ansible/roles/common/tasks/FreeBSD.yml

35 lines
860 B
YAML
Raw Normal View History

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' }
2017-01-07 15:10:50 +01:00
- { src: 'prompt_gentoo_setup', dest: '/usr/local/share/zsh/5.3.1/functions/Prompts/prompt_gentoo_setup' }
2016-03-03 08:09:26 +01:00
- name: Create LDAP certificate directory
file: path=/etc/ldap/ssl state=directory
2016-03-03 08:09:26 +01:00
- name: Copy LDAP certificate
copy: src=BKCA.crt dest=/etc/ldap/ssl/BKCA.crt mode=0444