Skip to content

Commit

Permalink
improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
P4T12ICK committed Jul 10, 2023
1 parent 641004d commit 3c8ade9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
8 changes: 4 additions & 4 deletions packer/ansible/linux_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
- role: linux_common
when: use_prebuilt_images_with_packer == "0"
- role: linux_universal_forwarder
when: use_prebuilt_images_with_packer == "0"
when: (use_prebuilt_images_with_packer == "0") and (install_contentctl == "0")
- role: linux_osquery
when: use_prebuilt_images_with_packer == "0"
when: (use_prebuilt_images_with_packer == "0") and (install_contentctl == "0")
- role: linux_sysmon
when: use_prebuilt_images_with_packer == "0"
when: (use_prebuilt_images_with_packer == "0") and (install_contentctl == "0")
- role: linux_install_art
when: use_prebuilt_images_with_packer == "0"
when: (use_prebuilt_images_with_packer == "0") and (install_contentctl == "0")
4 changes: 4 additions & 0 deletions packer/ansible/roles/linux_common/tasks/update_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
name: acl
state: present

- name: Install Acl Retry
apt:
name: acl
state: present

- name: Check if a reboot is needed for Debian and Ubuntu boxes
register: reboot_required_file
Expand Down
17 changes: 11 additions & 6 deletions terraform/ansible/linux_server_post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
gather_facts: False
become: true
roles:
- set_hostname_linux
- linux_server_post
- update_sysmon_config_linux
- linux_agent_prelude
- splunk_byo_linux
- contentctl
- role: set_hostname_linux
- role: linux_server_post
when: install_contentctl == "0"
- role: update_sysmon_config_linux
when: install_contentctl == "0"
- role: linux_agent_prelude
when: install_contentctl == "0"
- role: splunk_byo_linux
when: install_contentctl == "0"
- role: contentctl
when: install_contentctl == "1"

0 comments on commit 3c8ade9

Please sign in to comment.