-
Notifications
You must be signed in to change notification settings - Fork 364
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 #963 from splunk/bug_fix_ar
improve cisco secure endpoint
- Loading branch information
Showing
6 changed files
with
32 additions
and
9 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
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
12 changes: 12 additions & 0 deletions
12
terraform/ansible/roles/cisco_secure_endpoint_linux/tasks/config.yml
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,12 @@ | ||
--- | ||
|
||
- name: Copy Cisco Secure Endpoint Linux agent | ||
copy: | ||
src: "../../apps/{{ linux_servers.cisco_secure_endpoint_linux_agent }}" | ||
dest: /tmp/cisco_secure_endpoint_linux_agent.deb | ||
|
||
- name: Install Cisco Secure Endpoint Linux agent | ||
apt: | ||
deb: "/tmp/cisco_secure_endpoint_linux_agent.deb" | ||
state: present | ||
become: yes |
4 changes: 4 additions & 0 deletions
4
terraform/ansible/roles/cisco_secure_endpoint_linux/tasks/main.yml
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,4 @@ | ||
--- | ||
|
||
- include_tasks: config.yml | ||
when: linux_servers.install_cisco_secure_endpoint == "1" |
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