Compare commits
No commits in common. "master" and "v1.0.0" have entirely different histories.
|
@ -1,8 +1,3 @@
|
|||
## v1.0.1
|
||||
|
||||
### Fix
|
||||
* Use flatten to manage packages list.
|
||||
* Prefix module with "ansible.builtin.".
|
||||
|
||||
## v1.0.0
|
||||
|
||||
|
|
|
@ -116,7 +116,7 @@ Jérémy Gardais
|
|||
* [IPR][ipr website] (Institut de Physique de Rennes)
|
||||
|
||||
[gogs to github hook]: https://stackoverflow.com/a/21998477
|
||||
[netdata source]: https://git.ipr.univ-rennes.fr/cellinfo/ansible.netdata
|
||||
[netdata source]: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.netdata
|
||||
[netdata github]: https://github.com/ipr-cnrs/netdata
|
||||
[wtfpl website]: http://www.wtfpl.net/about/
|
||||
[ipr website]: https://ipr.univ-rennes1.fr/
|
||||
|
|
|
@ -7,7 +7,7 @@ galaxy_info:
|
|||
description: "Manage Netdata configuration"
|
||||
license: WTFPL
|
||||
company: IPR
|
||||
issue_tracker_url: https://git.ipr.univ-rennes.fr/cellinfo/ansible.netadata/issues
|
||||
issue_tracker_url: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.netadata/issues
|
||||
min_ansible_version: 2.6
|
||||
platforms:
|
||||
- name: Debian
|
||||
|
|
|
@ -5,16 +5,18 @@
|
|||
|
||||
# Manage base system packages [[[1
|
||||
- name: Ensure base packages are in there desired state
|
||||
ansible.builtin.package:
|
||||
name: '{{ netdata__base_packages | flatten }}'
|
||||
package:
|
||||
name: '{{ item }}'
|
||||
state: '{{ "present" if (netdata__deploy_state == "present") else "absent" }}'
|
||||
install_recommends: '{{ netdata__install_recommends | bool }}'
|
||||
with_flattened:
|
||||
- '{{ netdata__base_packages | to_nice_json }}'
|
||||
register: pkg_result
|
||||
until: pkg_result is success
|
||||
|
||||
# Server Manage /etc configuration files [[[1
|
||||
- name: Ensure Netdata directory structure exists
|
||||
ansible.builtin.file:
|
||||
file:
|
||||
path: '/etc/netdata/{{ item.path }}'
|
||||
state: directory
|
||||
owner: 'root'
|
||||
|
@ -29,7 +31,7 @@
|
|||
notify: ['Restart Netdata service']
|
||||
|
||||
- name: Generate Netdata configuration files
|
||||
ansible.builtin.template:
|
||||
template:
|
||||
src: '{{ item.src }}'
|
||||
dest: "/etc/netdata/{{ item.path | replace('.j2','') }}"
|
||||
owner: 'root'
|
||||
|
@ -44,7 +46,7 @@
|
|||
notify: ['Restart Netdata service']
|
||||
|
||||
- name: Generate Netdata configuration symlinks
|
||||
ansible.builtin.template:
|
||||
template:
|
||||
src: '{{ item.src }}'
|
||||
dest: "/etc/netdata/{{ item.path | replace('.j2','') }}"
|
||||
state: 'link'
|
||||
|
|
Loading…
Reference in New Issue