Compare commits

..

3 Commits

4 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,9 @@
## v2.0.1
### Fix
* Use flatten to manage packages list.
* Prefix module with "ansible.builtin.".
## v2.0.0
### Features

View File

@ -62,7 +62,7 @@ Jérémy Gardais
* [IPR][ipr website] (Institut de Physique de Rennes)
[gogs to github hook]: https://stackoverflow.com/a/21998477
[arpwatch source]: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.arpwatch
[arpwatch source]: https://git.ipr.univ-rennes.fr/cellinfo/ansible.arpwatch
[arpwatch github]: https://github.com/ipr-cnrs/arpwatch
[wtfpl website]: http://www.wtfpl.net/about/
[ipr website]: https://ipr.univ-rennes1.fr/

View File

@ -7,7 +7,7 @@ galaxy_info:
description: "Manage Arpwatch installation and configuration"
license: WTFPL
company: IPR
issue_tracker_url: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.arpwatch/issues
issue_tracker_url: https://git.ipr.univ-rennes.fr/cellinfo/ansible.arpwatch/issues
min_ansible_version: 2.9
platforms:
- name: Debian

View File

@ -5,19 +5,17 @@
# Manage required system packages [[[1
- name: Ensure required packages are in there desired state
package:
name: '{{ item }}'
ansible.builtin.package:
name: '{{ arpwatch__base_packages | flatten }}'
state: 'present'
install_recommends: False
with_flattened:
- '{{ arpwatch__base_packages | to_nice_json }}'
register: pkg_result
until: pkg_result is success
when: arpwatch__enabled|bool
# Manage service default [[[1
- name: Manage service default
template:
ansible.builtin.template:
src: 'etc/default/arpwatch.j2'
dest: "/etc/default/arpwatch"
owner: root
@ -29,7 +27,7 @@
# Manage service [[[1
- name: Manage arpwatch service by network interface
service:
ansible.builtin.service:
name: '{{ arpwatch__service_name }}@{{ item }}'
state: '{{ "started" if ((arpwatch__enabled | d(True) | bool) and
(arpwatch__service_manage | d(True) | bool))