2015-12-13 18:54:49 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Install snmpd
|
2017-07-02 22:17:32 +02:00
|
|
|
pkgng: name=net-snmp
|
2015-12-13 18:54:49 +01:00
|
|
|
tags: snmp
|
|
|
|
|
|
|
|
- name: Configure snmpd
|
|
|
|
template: src=snmpd.conf.j2 dest=/usr/local/etc/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
|
|
|
pkgng: name={{ item }}
|
2015-12-13 18:54:49 +01:00
|
|
|
with_items:
|
|
|
|
- vim-lite
|
2016-04-07 16:09:04 +02:00
|
|
|
- htop
|
2015-12-13 18:54:49 +01:00
|
|
|
- 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' }
|
2018-09-16 11:50:45 +02:00
|
|
|
- { src: 'prompt_gentoo_setup', dest: '/usr/local/share/zsh/5.6/functions/Prompts/prompt_gentoo_setup' }
|
2016-03-03 08:09:26 +01:00
|
|
|
|
2018-09-20 18:30:42 +02:00
|
|
|
- name: Create BKCA certificate directory
|
|
|
|
file: path="{{ item }}" state=directory
|
|
|
|
loop:
|
|
|
|
- "/etc/ssl/certs"
|
|
|
|
- "/usr/local/etc/ssl/certs"
|
2016-03-24 11:43:40 +01:00
|
|
|
|
2018-09-20 18:30:42 +02:00
|
|
|
- name: Copy BKCA certificate
|
|
|
|
copy: src=BKCA.crt dest="{{ item }}/BKCA.crt" mode=0444
|
|
|
|
loop:
|
|
|
|
- "/etc/ssl/certs"
|
|
|
|
- "/usr/local/etc/ssl/certs"
|