ansible/roles/common/tasks/Debian.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

2015-12-13 18:54:49 +01:00
---
- name: Install snmpd
2017-07-02 22:17:32 +02:00
apt: name=snmpd
2015-12-13 18:54:49 +01:00
tags: snmp
2017-02-17 11:12:12 +01:00
- name: Make snmpd less verbose
copy: src=snmpd dest=/etc/default/snmpd
notify: Restart snmpd
tags: snmp
2015-12-13 18:54:49 +01:00
- 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
2017-07-02 22:17:32 +02:00
apt: name={{ item }}
2015-12-13 18:54:49 +01:00
with_items:
- apt-dater-host
2016-02-01 21:01:52 +01:00
- dnsutils
2015-12-13 18:54:49 +01:00
- htop
- 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
- name: Create LDAP certificate directory
file: path=/etc/ldap/ssl state=directory
- 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
copy: src=BKCA.crt dest=/etc/ldap/ssl/BKCA.crt mode=0444