Compare commits
11 Commits
Author | SHA1 | Date |
---|---|---|
|
82564f655e | |
|
3b57009d31 | |
|
c84bc06090 | |
|
3946b43ad4 | |
|
4126ae49d9 | |
|
3f2070368f | |
|
c8025d6cd0 | |
|
9a67628e2e | |
|
2877ad6f8e | |
|
084f5a2952 | |
|
c0f80853e4 |
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -1,4 +1,25 @@
|
||||||
## v1.1
|
## v1.2.0
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
* Replace flatten jinja filter with **list**.
|
||||||
|
* Call module with FQCN.
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
* Use comment jinja filter with ansible_managed to allow multi-lines comment.
|
||||||
|
|
||||||
|
## v1.1.2
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
* Use to_nice_json to manage packages list.
|
||||||
|
|
||||||
|
## v1.1.1
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
* Set empty dependencies line to fix Galaxy warning.
|
||||||
|
* Fix small warnings from linter.
|
||||||
|
* Fix E405 Remote package tasks should have a retry.
|
||||||
|
|
||||||
|
## v1.1.0
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
* Ensure to keep permissions for configuration files.
|
* Ensure to keep permissions for configuration files.
|
||||||
|
@ -6,7 +27,7 @@
|
||||||
### Enhancements
|
### Enhancements
|
||||||
* Allow possibility to add symlinks in Xymon configuration.
|
* Allow possibility to add symlinks in Xymon configuration.
|
||||||
|
|
||||||
## v1.0
|
## v1.0.0
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
* Install `xymon` packages for Debian based distros.
|
* Install `xymon` packages for Debian based distros.
|
||||||
|
|
|
@ -82,7 +82,7 @@ Jérémy Gardais
|
||||||
* [IPR][ipr website] (Institut de Physique de Rennes)
|
* [IPR][ipr website] (Institut de Physique de Rennes)
|
||||||
|
|
||||||
[gogs to github hook]: https://stackoverflow.com/a/21998477
|
[gogs to github hook]: https://stackoverflow.com/a/21998477
|
||||||
[xymon_server source]: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.xymon_server
|
[xymon_server source]: https://git.ipr.univ-rennes.fr/cellinfo/ansible.xymon_server
|
||||||
[xymon_server github]: https://github.com/ipr-cnrs/xymon_server
|
[xymon_server github]: https://github.com/ipr-cnrs/xymon_server
|
||||||
[wtfpl website]: http://www.wtfpl.net/about/
|
[wtfpl website]: http://www.wtfpl.net/about/
|
||||||
[ipr website]: https://ipr.univ-rennes1.fr/
|
[ipr website]: https://ipr.univ-rennes1.fr/
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# List of base packages to install.
|
# List of base packages to install.
|
||||||
xymon_server__base_packages:
|
xymon_server__base_packages:
|
||||||
- 'xymon'
|
- xymon
|
||||||
|
|
||||||
# ]]]
|
# ]]]
|
||||||
# .. envvar:: xymon_server__deploy_state [[[
|
# .. envvar:: xymon_server__deploy_state [[[
|
||||||
|
|
|
@ -7,4 +7,3 @@
|
||||||
(xymon_server__service_manage | d(True) | bool))
|
(xymon_server__service_manage | d(True) | bool))
|
||||||
else "stopped" }}'
|
else "stopped" }}'
|
||||||
enabled: '{{ xymon_server__service_manage | d(True) | bool }}'
|
enabled: '{{ xymon_server__service_manage | d(True) | bool }}'
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
dependencies: []
|
||||||
|
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
author: "Jérémy Gardais"
|
author: "Jérémy Gardais"
|
||||||
description: "Manage Xymon server configuration"
|
description: "Manage Xymon server configuration"
|
||||||
license: WTFPL
|
license: WTFPL
|
||||||
company: IPR
|
company: IPR
|
||||||
issue_tracker_url: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.xymon_server/issues
|
issue_tracker_url: https://git.ipr.univ-rennes.fr/cellinfo/ansible.xymon_server/issues
|
||||||
min_ansible_version: 2.4
|
min_ansible_version: 2.4
|
||||||
platforms:
|
platforms:
|
||||||
- name: Debian
|
- name: Debian
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
|
|
||||||
# Server Manage required system packages [[[1
|
# Server Manage required system packages [[[1
|
||||||
- name: Ensure required packages are in there desired state
|
- name: Ensure required packages are in there desired state
|
||||||
package:
|
ansible.builtin.package:
|
||||||
name: '{{ item }}'
|
name: '{{ xymon_server__base_packages | list }}'
|
||||||
state: '{{ "present" if (xymon_server__deploy_state == "present") else "absent" }}'
|
state: '{{ "present" if (xymon_server__deploy_state == "present") else "absent" }}'
|
||||||
install_recommends: False
|
install_recommends: False
|
||||||
with_flattened:
|
register: server_pkg_result
|
||||||
- '{{ xymon_server__base_packages }}'
|
until: server_pkg_result is success
|
||||||
|
|
||||||
# Server Manage /etc configuration files [[[1
|
# Server Manage /etc configuration files [[[1
|
||||||
|
|
||||||
- name: Ensure /etc directory structure exists
|
- name: Ensure /etc directory structure exists
|
||||||
file:
|
ansible.builtin.file:
|
||||||
path: '/etc/xymon/{{ item.path }}'
|
path: '/etc/xymon/{{ item.path }}'
|
||||||
state: directory
|
state: directory
|
||||||
with_filetree: '{{ xymon_server__etc_src }}'
|
with_filetree: '{{ xymon_server__etc_src }}'
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
notify: ['restart xymon server service']
|
notify: ['restart xymon server service']
|
||||||
|
|
||||||
- name: Generate Xymon configuration files
|
- name: Generate Xymon configuration files
|
||||||
template:
|
ansible.builtin.template:
|
||||||
src: '{{ item.src }}'
|
src: '{{ item.src }}'
|
||||||
dest: "/etc/xymon/{{ item.path | replace('.j2','') }}"
|
dest: "/etc/xymon/{{ item.path | replace('.j2','') }}"
|
||||||
mode: '{{ item.mode }}'
|
mode: '{{ item.mode }}'
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
notify: ['restart xymon server service']
|
notify: ['restart xymon server service']
|
||||||
|
|
||||||
- name: Generate Xymon configuration symlinks
|
- name: Generate Xymon configuration symlinks
|
||||||
template:
|
ansible.builtin.template:
|
||||||
src: '{{ item.src }}'
|
src: '{{ item.src }}'
|
||||||
dest: "/etc/xymon/{{ item.path }}"
|
dest: "/etc/xymon/{{ item.path }}"
|
||||||
mode: '{{ item.mode }}'
|
mode: '{{ item.mode }}'
|
||||||
|
@ -45,11 +45,10 @@
|
||||||
# Manage service [[[1
|
# Manage service [[[1
|
||||||
|
|
||||||
- name: Manage Xymon server service
|
- name: Manage Xymon server service
|
||||||
service:
|
ansible.builtin.service:
|
||||||
name: '{{ xymon_server__service_name }}'
|
name: '{{ xymon_server__service_name }}'
|
||||||
state: '{{ "started" if (xymon_server__deploy_state == "present" and
|
state: '{{ "started" if (xymon_server__deploy_state == "present" and
|
||||||
(xymon_server__service_manage | d(True) | bool))
|
(xymon_server__service_manage | d(True) | bool))
|
||||||
else "stopped" }}'
|
else "stopped" }}'
|
||||||
enabled: '{{ (xymon_server__deploy_state == "present") and
|
enabled: '{{ (xymon_server__deploy_state == "present") and
|
||||||
(xymon_server__service_manage | d(True) | bool) }}'
|
(xymon_server__service_manage | d(True) | bool) }}'
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# {{ ansible_managed }}
|
# {{ ansible_managed | comment }}
|
||||||
#
|
#
|
||||||
# Master configuration file for Xymon
|
# Master configuration file for Xymon
|
||||||
#
|
#
|
||||||
|
@ -20,6 +20,6 @@
|
||||||
|
|
||||||
#page common Common
|
#page common Common
|
||||||
|
|
||||||
#group-except sslcert|bbd|xymond|xymongen|xymonnet|xymonproxy <font size="+1">Test</font>⏎
|
#group-except sslcert|bbd|xymond|xymongen|xymonnet|xymonproxy <font size="+1">Test</font>
|
||||||
#include hosts.d/common.cfg⏎
|
#include hosts.d/common.cfg
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# {{ ansible_managed }}
|
# {{ ansible_managed | comment }}
|
||||||
|
|
||||||
#192.168.0.1 www.{{ ansible_domain }} # apt libs SSH apache https://www.{{ ansible_domain }}
|
#192.168.0.1 www.{{ ansible_domain }} # apt libs SSH apache https://www.{{ ansible_domain }}
|
||||||
#192.168.0.2 pxe.{{ ansible_domain }} # apt libs SSH DESCR:PXE CLIENT:deploy
|
#192.168.0.2 pxe.{{ ansible_domain }} # apt libs SSH DESCR:PXE CLIENT:deploy
|
||||||
|
|
Loading…
Reference in New Issue