Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ansible/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ kb_config_dir: "{{ kb_install_dir }}/config"
kb_plugins_dir: "{{ kb_install_dir }}/bundles"
# kpm.yml file
kpm_yml: "{{ kb_install_dir }}/kpm.yml"
killbill_kpm_yml: "{{ kb_install_dir }}/kpm.yml"
kaui_kpm_yml: "{{ kb_install_dir }}/kpm.yml"

kaui_install_dir: /var/lib/kaui
# For consistency as to where the sha1.yml is located
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/kaui/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
become_user: "{{ tomcat_owner }}"
killbill:
kpm_path: "{{ kpm_path }}"
kpm_yml: "{{ kpm_yml }}"
kpm_yml: "{{ kaui_kpm_yml }}"
when: not existing_webapp.stat.exists
tags: kpm-install

Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/killbill/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
become_user: "{{ tomcat_owner }}"
killbill:
kpm_path: "{{ kpm_path }}"
kpm_yml: "{{ kpm_yml }}"
kpm_yml: "{{ killbill_kpm_yml }}"
when: not existing_webapp.stat.exists
tags: kpm-install

Expand Down
Loading