forked from infra/ansible
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
---
|
|
|
|
- name: Install snmpd
|
|
apt: name=snmpd
|
|
|
|
- name: Create snmpd service override directory
|
|
file: path=/etc/systemd/system/snmpd.service.d state=directory
|
|
|
|
- name: Make snmpd less verbose
|
|
copy: src=snmpd dest=/etc/systemd/system/snmpd.service.d/local.conf
|
|
notify:
|
|
- Reload systemd
|
|
- Restart snmpd
|
|
|
|
- name: Configure snmpd
|
|
template: src=snmpd.conf.j2 dest=/etc/snmp/snmpd.conf
|
|
notify: Restart snmpd
|
|
|
|
- name: Start the snmpd service
|
|
service: name=snmpd state=started enabled=yes
|
|
|
|
- name: Install misc software
|
|
apt: name={{ item }}
|
|
with_items:
|
|
- apt-dater-host
|
|
- dnsutils
|
|
- htop
|
|
- less
|
|
- net-tools
|
|
- openssl
|
|
- pydf
|
|
- rsync
|
|
- sudo
|
|
- 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' }
|
|
- { src: 'motd', dest: '/etc/motd' }
|
|
- { src: 'prompt_gentoo_setup', dest: '/usr/share/zsh/functions/Prompts/prompt_gentoo_setup' }
|
|
- { src: 'vimrc.local', dest: '/etc/vim/vimrc.local' }
|
|
|
|
- name: Set shell for root user
|
|
user: name=root shell=/bin/zsh
|
|
|
|
- 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
|
|
|
|
- name: Copy LDAP certificate
|
|
copy: src=BKCA.crt dest=/etc/ldap/ssl/BKCA.crt mode=0444
|
|
|
|
- name: Disable hibernation/resume
|
|
copy: src=resume dest=/etc/initramfs-tools/conf.d/resume
|
|
notify: update-initramfs
|