forked from infra/ansible
34 lines
877 B
YAML
34 lines
877 B
YAML
---
|
|
|
|
- name: Install snmpd
|
|
pkgng: name=net-snmp state=present
|
|
tags: snmp
|
|
|
|
- name: Configure snmpd
|
|
template: src=snmpd.conf.j2 dest=/usr/local/etc/snmpd.conf
|
|
notify: Restart snmpd
|
|
tags: snmp
|
|
|
|
- name: Start the snmpd service
|
|
service: name=snmpd state=started enabled=yes
|
|
tags: snmp
|
|
|
|
- name: Install misc software
|
|
pkgng: name={{ item }} state=present
|
|
with_items:
|
|
- vim-lite
|
|
- 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: 'prompt_gentoo_setup', dest: '/usr/local/share/zsh/5.2/functions/Prompts/prompt_gentoo_setup' }
|
|
|
|
- name: Create LDAP certificate directory
|
|
file: path=/etc/ldap/ssl state=directory
|
|
|
|
- name: Copy LDAP certificate
|
|
copy: src=BKCA.crt dest=/etc/ldap/ssl/BKCA.crt mode=0444
|