2015-12-13 18:54:49 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Install snmpd
|
|
|
|
apt: name=snmpd state=present
|
|
|
|
tags: snmp
|
|
|
|
|
|
|
|
- name: Configure snmpd
|
|
|
|
template: src=snmpd.conf.j2 dest=/etc/snmp/snmpd.conf
|
2016-02-15 19:17:28 +01:00
|
|
|
notify: Restart snmpd
|
2016-02-01 20:56:51 +01:00
|
|
|
tags: snmp
|
2015-12-13 18:54:49 +01:00
|
|
|
|
|
|
|
- name: Start the snmpd service
|
|
|
|
service: name=snmpd state=started enabled=yes
|
|
|
|
tags: snmp
|
|
|
|
|
|
|
|
- name: Install misc software
|
|
|
|
apt: name={{ item }} state=present
|
|
|
|
with_items:
|
2016-04-11 22:39:59 +02:00
|
|
|
- apt-dater-host
|
2016-02-01 21:01:52 +01:00
|
|
|
- dnsutils
|
2015-12-13 18:54:49 +01:00
|
|
|
- htop
|
2016-03-24 11:43:40 +01:00
|
|
|
- openssl
|
2015-12-13 18:54:49 +01:00
|
|
|
- pydf
|
2016-04-08 09:12:19 +02:00
|
|
|
- rsync
|
2016-02-15 21:04:37 +01:00
|
|
|
- sudo
|
2015-12-13 18:54:49 +01:00
|
|
|
- vim-nox
|
|
|
|
- zsh
|
|
|
|
|
|
|
|
- name: Configure misc software
|
|
|
|
copy: src={{ item.src }} dest={{ item.dest }}
|
|
|
|
with_items:
|
|
|
|
- { src: '.zshrc', dest: '/root/.zshrc' }
|
|
|
|
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
2016-03-04 13:02:55 +01:00
|
|
|
- { src: 'motd', dest: '/etc/motd' }
|
2016-02-23 15:01:34 +01:00
|
|
|
- { src: 'prompt_gentoo_setup', dest: '/usr/share/zsh/functions/Prompts/prompt_gentoo_setup' }
|
2015-12-13 18:54:49 +01:00
|
|
|
|
|
|
|
- name: Set shell for root user
|
|
|
|
user: name=root shell=/bin/zsh
|
2016-03-03 08:09:26 +01:00
|
|
|
|
2016-03-24 11:43:40 +01:00
|
|
|
- name: Create LDAP certificate directory
|
|
|
|
file: path=/etc/ldap/ssl state=directory
|
|
|
|
|
2016-04-06 09:50:00 +02:00
|
|
|
- name: Create LDAP client config
|
|
|
|
template: src=ldap.conf.j2 dest=/etc/ldap/ldap.conf mode=0644
|
|
|
|
|
2016-03-03 08:09:26 +01:00
|
|
|
- name: Copy LDAP certificate
|
2016-03-24 11:43:40 +01:00
|
|
|
copy: src=BKCA.crt dest=/etc/ldap/ssl/BKCA.crt mode=0444
|