Skip to content

Commit 10b8e84

Browse files
committed
Fix ansible template and script paths
1 parent dee6ac1 commit 10b8e84

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/source/configuration/wazuh.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ vault file which will be placed in ``$KAYOBE_CONFIG_PATH/deployment/wazuh-secret
252252
If using environments it ends up in ``$KAYOBE_CONFIG_PATH/environments/<env_name>/deployment/wazuh-secrets.yml``
253253
Remember to encrypt!
254254

255-
Wazuh secrets template is located in ``$KAYOBE_CONFIG_PATH/ansible/templates/deployment/wazuh-secrets.yml.j2``.
255+
Wazuh secrets template is located in ``$KAYOBE_CONFIG_PATH/ansible/templates/wazuh-secrets.yml.j2``.
256256
It will be used by wazuh secrets playbook to generate wazuh secrets vault file.
257257

258258

etc/kayobe/ansible/deployment/deploy-os-capacity-exporter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
- name: Template clouds.yml
5050
ansible.builtin.template:
51-
src: templates/os_capacity-clouds.yml.j2
51+
src: ../templates/os_capacity-clouds.yml.j2
5252
dest: /opt/kayobe/os-capacity/clouds.yaml
5353
register: clouds_yaml_result
5454

etc/kayobe/ansible/deployment/smartmon-tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
- name: Copy smartmon.py and nvmemon.sh from scripts folder
5858
ansible.builtin.copy:
59-
src: scripts/{{ item }}
59+
src: ../scripts/{{ item }}
6060
dest: /usr/local/bin/{{ item }}
6161
owner: root
6262
group: root

etc/kayobe/ansible/deployment/wazuh-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
- name: Template new secrets
2020
no_log: true
2121
ansible.builtin.template:
22-
src: wazuh-secrets.yml.j2
22+
src: ../templates/wazuh-secrets.yml.j2
2323
dest: "{{ wazuh_secrets_path }}"
2424

2525
- name: In-place encrypt wazuh-secrets

etc/kayobe/ansible/fixes/fix-houston.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
- name: Create systemd service for -ovs network interface
2525
ansible.builtin.template:
26-
src: fix-houston-interface.service.j2
26+
src: ../templates/fix-houston-interface.service.j2
2727
dest: /etc/systemd/system/fix-houston-{{ item }}.service
2828
loop: "{{ neutron_bridge_name.split(',') }}"
2929
vars:

etc/kayobe/ansible/tools/configure-aio-resources.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
- name: Run init-run-once
4141
ansible.builtin.script:
42-
cmd: scripts/aio-init.sh
42+
cmd: ../scripts/aio-init.sh
4343
creates: /tmp/.init-runonce
4444
environment:
4545
KOLLA_OPENSTACK_COMMAND: "{{ venv }}/bin/openstack"

0 commit comments

Comments
 (0)