ansible/roles/common/tasks/FreeBSD.yml

28 lines
701 B
YAML
Raw Normal View History

2015-12-13 18:54:49 +01:00
---
- 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
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
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' }
2016-02-23 15:01:34 +01:00
- { src: 'prompt_gentoo_setup', dest: '/usr/local/share/zsh/5.2/functions/Prompts/prompt_gentoo_setup' }