first commit
This commit is contained in:
17
roles/windows_install-sentinelone/tasks/main.yml
Normal file
17
roles/windows_install-sentinelone/tasks/main.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
- name: Copy SentinelAgent to target
|
||||
ansible.windows.win_copy:
|
||||
src: SentinelOneInstaller_windows 64bit_v23.3.3_264.exe
|
||||
dest: C:\Users\Public\Downloads\sentinelone.exe
|
||||
- name: install sentinelone
|
||||
win_package:
|
||||
path: C:\Users\Public\Downloads\sentinelone.exe
|
||||
arguments:
|
||||
- -t eyJ1cmwiOiAiaHR0cHM6Ly9ldWNlMS0xMDQuc2VudGluZWxvbmUubmV0IiwgInNpdGVfa2V5IjogIjNiOGI1MDlhY2I5OGU5MmYifQ==
|
||||
- --qn
|
||||
- --dont_fail_on_config_preserving_failures
|
||||
creates_service: "Sentinel Agent"
|
||||
state: present
|
||||
expected_return_code: [0]
|
||||
register: package_output
|
||||
ignore_errors: yes
|
||||
Reference in New Issue
Block a user