ansible/roles/librenms/tasks/main.yml

49 lines
1.0 KiB
YAML

---
- name: Install dependencies
apt: name={{ item }} state=present
with_items:
- fping
- git
- graphviz
- imagemagick
- mtr-tiny
- mysql-server
- nmap
- php-net-ipv4
- php-net-ipv6
- php-pear
- php5-cli
- php5-curl
- php5-fpm
- php5-gd
- php5-json
- php5-mcrypt
- php5-mysql
- php5-snmp
- python-mysqldb
- rrdtool
- snmp
- snmpd
- whois
- name: Configure MySQL database
mysql_db: name={{ librenms_dbname }}
- name: Configure MySQL user
mysql_user: name={{ librenms_dbuser }} password={{ librenms_dbpass }} priv={{ librenms_dbname }}.*:ALL state=present
- name: Unpack librenms
unarchive: src=https://github.com/librenms/librenms/archive/201607.zip dest=/opt copy=no
- name: Configure vhost
template: src=vhost.j2 dest=/etc/nginx/sites-available/librenms
notify: Restart nginx
- name: Enable vhost
file: src=/etc/nginx/sites-available/librenms dest=/etc/nginx/sites-enabled/librenms state=link
notify: Restart nginx
- name: Start php5-fpm
service: name=php5-fpm state=started enabled=yes