1
0
forked from infra/ansible
infra/roles/common/tasks/FreeBSD.yml

28 lines
575 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' }