forked from infra/ansible
27 lines
594 B
YAML
27 lines
594 B
YAML
|
---
|
||
|
|
||
|
- 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
|
||
|
tags: snmp
|
||
|
notify: restart snmpd
|
||
|
|
||
|
- 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' }
|