Ansible Script 추가
This commit is contained in:
22
ansible/01_old/roles/zabbix-agent/tasks/macOS.yml
Normal file
22
ansible/01_old/roles/zabbix-agent/tasks/macOS.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
# Tasks specific for macOS
|
||||
- name: "macOS | Check installed package version"
|
||||
ansible.builtin.shell: |
|
||||
set -o pipefail
|
||||
pkgutil --pkg-info 'com.zabbix.pkg.ZabbixAgent' | grep 'version:' | cut -d ' ' -f 2
|
||||
register: pkgutil_version
|
||||
check_mode: false
|
||||
changed_when: false
|
||||
failed_when: pkgutil_version.rc == 2
|
||||
|
||||
- name: "macOS | Download the Zabbix package"
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ zabbix_mac_download_link }}"
|
||||
dest: "/tmp/{{ zabbix_mac_package }}"
|
||||
mode: 0644
|
||||
when: pkgutil_version.stdout != zabbix_version_long
|
||||
|
||||
- name: "macOS | Install the Zabbix package"
|
||||
ansible.builtin.command: installer -pkg "/tmp/{{ zabbix_mac_package }}" -target /
|
||||
become: true
|
||||
when: pkgutil_version.stdout != zabbix_version_long
|
||||
Reference in New Issue
Block a user