forked from infra/ansible
35 lines
858 B
YAML
35 lines
858 B
YAML
---
|
|
|
|
- name: Install snmpd
|
|
pkgng: name=net-snmp
|
|
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 }}
|
|
with_items:
|
|
- vim-lite
|
|
- htop
|
|
- 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.6/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
|