-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from Icinga/fix/276-move-package-variables-to…
…-defaults Fix/276 move package variables to defaults
- Loading branch information
Showing
17 changed files
with
20 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
--- | ||
icinga2_packages: ["icinga2"] | ||
icinga2_state: started | ||
icinga2_enabled: true | ||
icinga2_confd: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
- name: Apt - install package icinga2 | ||
ansible.builtin.apt: | ||
pkg: "{{ icinga2_packages }}" | ||
pkg: "{{ icinga2_packages + icinga2_packages_dependencies }}" | ||
state: present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### Workaround Missing README | ||
|
||
Issue: https://github.com/ansible/galaxy/issues/2438 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
- name: Debian - Install Icinga Web 2 packages | ||
ansible.builtin.apt: | ||
name: "{{ icingaweb2_packages }}" | ||
name: "{{ icingaweb2_packages + icingaweb2_packages_dependencies }}" | ||
state: present | ||
update_cache: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
- name: RedHat - Install Icinga Web 2 packages | ||
ansible.builtin.yum: | ||
name: "{{ icingaweb2_packages }}" | ||
name: "{{ icingaweb2_packages + icingaweb2_packages_dependencies }}" | ||
state: present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
- name: Suse - Install Icinga Web 2 packages | ||
community.general.zypper: | ||
name: "{{ icingaweb2_packages }}" | ||
name: "{{ icingaweb2_packages + icingaweb2_packages_dependencies }}" | ||
state: present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
icingaweb2_httpd_user: www-data | ||
icingaweb2_fragments_path: /var/tmp/icingaweb | ||
icingaweb2_packages: ["icingaweb2","icingacli","libapache2-mod-php"] | ||
icingaweb2_packages_dependencies: ["libapache2-mod-php"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
icingaweb2_httpd_user: www-data | ||
icingaweb2_fragments_path: /var/tmp/icingaweb | ||
icingaweb2_packages: ["icingaweb2", "icingacli"] | ||
icingaweb2_packages_dependencies: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
icingaweb2_httpd_user: apache | ||
icingaweb2_fragments_path: /var/tmp/icingaweb | ||
icingaweb2_packages: ["icingaweb2", "icingacli", "icingaweb2-selinux"] | ||
icingaweb2_packages_dependencies: ["icingaweb2-selinux"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
icingaweb2_httpd_user: wwwrun | ||
icingaweb2_fragments_path: /var/tmp/icingaweb | ||
icingaweb2_packages: ["icingaweb2", "icingacli"] | ||
icingaweb2_packages_dependencies: [] |