37 lines
1.3 KiB
YAML
37 lines
1.3 KiB
YAML
---
|
|
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
|
|
#
|
|
# tasks file for fusioninventory
|
|
|
|
# Manage dependent packages [[[1
|
|
- name: Ensure dependent packages are in there desired state
|
|
package:
|
|
name: '{{ item }}'
|
|
state: '{{ "present" if (fusioninventory__agent_deploy_state == "present") else "absent" }}'
|
|
with_flattened:
|
|
- '{{ fusioninventory__agent_depend_packages }}'
|
|
|
|
# Manage agent package [[[1
|
|
- name: Ensure fusioninventory-agent package from URL
|
|
apt:
|
|
deb: '{{ fusioninventory__agent_package_url | d(omit) }}'
|
|
state: '{{ "present" if (fusioninventory__agent_deploy_state == "present") else "absent" }}'
|
|
when: fusioninventory__agent_package_url != ""
|
|
|
|
- name: Ensure fusioninventory-agent package from REPOS
|
|
package:
|
|
name: 'fusioninventory-agent'
|
|
state: '{{ "present" if (fusioninventory__agent_deploy_state == "present") else "absent" }}'
|
|
when: fusioninventory__agent_package_url == ""
|
|
|
|
# Manage agent configuration file [[[1
|
|
- name: Create Fusioninventory-agent configuration
|
|
template:
|
|
src: '{{ fusioninventory__agent_conf_src }}'
|
|
dest: "/etc/fusioninventory/agent.cfg"
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
when: fusioninventory__agent_deploy_state == "present"
|
|
notify: ['restart fusioninventory-agent service']
|