2018-09-10 11:33:08 +02:00
# FusionInventory
1. [Overview ](#overview )
2. [Role Variables ](#role-variables )
2020-03-12 08:35:29 +01:00
* [Config Specific Variables ](#config-specific-variables )
2018-09-10 11:33:08 +02:00
3. [Example Playbook ](#example-playbook )
4. [Configuration ](#configuration )
5. [Development ](#development )
6. [License ](#license )
7. [Author Information ](#author-information )
## Overview
A role to manage FusionInventory agent installation and configuration.
## Role Variables
* **fusioninventory__agent_version** : The version of Fusioninventory agent to install [default : `2.4-2` ].
* **fusioninventory__agent_depend_packages** : List of dependent packages to install.
2019-01-18 11:38:28 +01:00
* **fusioninventory__agent_package_url** : The URL used to download deb package for fusioninventory-agent [default : `http://debian.fusioninventory.org/downloads/fusioninventory-agent_{{ fusioninventory__agent_version }}_all.deb` for Debian Stretch only].
2018-09-10 11:33:08 +02:00
* **fusioninventory__agent_deploy_state** : What is the desired state which this role should achieve [default : `present` ].
* **fusioninventory__agent_service_name** : The service name to manage [default : `fusioninventory-agent` ].
* **fusioninventory__agent_service_manage** : If the fusioninventory agent service should be managed [default : `True` ].
2018-09-10 14:02:41 +02:00
* **fusioninventory__agent_conf_src** : Template used to provide agent configuration file [default : `../templates/etc/fusioninventory/agent.cfg.j2` ].
2018-09-10 11:33:08 +02:00
2020-03-12 08:35:29 +01:00
### Config Specific Variables
Some variables used to generate FusionInventery agent.cfg file from Ansible template :
* **fusioninventory__agent_conf_server_url** : The URL of your Fusioninventory-server/GLPI/… [default⎵: ``].
* **fusioninventory__agent_conf_local_dir** : Write tasks results in a directory [default⎵: ``].
* **fusioninventory__agent_conf_delaytime** : Set an initial delay before the first target [default⎵: `3600` ].
* **fusioninventory__agent_conf_no_category** : Do not list given category items in inventory task (separated by a comma) [default⎵: ``].
* **fusioninventory__agent_conf_scan_homedirs** : Enable the scan of user home directories [default⎵: `False` ].
* **fusioninventory__agent_conf_scan_profiles** : Enable the scan of users list [default⎵: `False` ].
* **fusioninventory__agent_conf_no_ssl_check** : Disable check of the server SSL certificate [default⎵: `False` ].
* **fusioninventory__agent_conf_no_httpd** : Disable embedded web server [default⎵: `True` ].
* **fusioninventory__agent_conf_httpd_ip** : Interface/IP, the webserver server should listen to [default⎵: ``].
* **fusioninventory__agent_conf_httpd_port** : TCP port used by the webserver server to listen [default⎵: `62354` ].
* **fusioninventory__agent_conf_httpd_trust** : hostname or IP or subnet authorized for http request [default⎵: ``].
* **fusioninventory__agent_conf_debug** : If debug mode should be enabled [default⎵: `False` ].
2018-09-10 11:33:08 +02:00
## Example Playbook
* Use defaults vars :
``` yaml
- hosts: mynode.DOMAIN
roles:
- role: ipr-cnrs.fusioninventory
2020-03-12 08:35:29 +01:00
tags: ['role::fusioninventory', 'ipr', 'inventory']
2018-09-10 11:33:08 +02:00
```
2019-01-18 11:38:28 +01:00
* Install fusioninventory-agent from repository (unavailable in Debian Stretch and by default for all other release) :
2018-09-10 11:33:08 +02:00
``` yaml
- hosts: mynode.DOMAIN
roles:
- role: ipr-cnrs.fusioninventory
fusioninventory__agent_package_url: ''
tags: ['role::fusioninventory', 'ipr', inventory']
```
## Configuration
This role will :
* Install needed dependent packages of fusioninventory-agent.
2018-09-13 10:02:07 +02:00
* Once installed, the dependencies will not be removed.
2018-09-10 11:33:08 +02:00
* Install fusioninventory-agent package from official project package/URL.
2018-09-10 14:02:41 +02:00
* Generate agent's configuration file.
2018-09-10 14:55:42 +02:00
* Manage agent's systemd service.
2018-09-10 11:33:08 +02:00
## Development
This source code comes from our [Gogs instance][fusioninventory source] and the [Github repo][fusioninventory github] exist just to be able to send the role to Ansible Galaxy…
But feel free to send issue/PR here :)
Thanks to this [hook][gogs to github hook], Github automatically got updates from our [Gogs instance][fusioninventory source] :)
## License
[WTFPL][wtfpl website]
## Author Information
Jérémy Gardais
* Source : [on IPR's Gogs][fusioninventory source]
* [IPR][ipr website] (Institut de Physique de Rennes)
[gogs to github hook]: https://stackoverflow.com/a/21998477
[fusioninventory source]: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.fusioninventory
[fusioninventory github]: https://github.com/ipr-cnrs/fusioninventory
[wtfpl website]: http://www.wtfpl.net/about/
[ipr website]: https://ipr.univ-rennes1.fr/