EvoBSD/roles/base/tasks/packages.yml
Patrick Marchand f456e4abf2 Fix typo in pkg name
Wrote postgresql withouth the g...
2019-05-13 14:52:54 +02:00

32 lines
450 B
YAML

---
- name: Configure installurl
copy:
dest: /etc/installurl
src: installurl
tags:
- pkg
- name: Install packages (vim rsync mtr etc)
openbsd_pkg:
name: "{{ item }}"
state: present
with_items:
- wget
- vim--no_x11
- rsync--
- mtr--
- iftop
- sudo--
- postgresql-client
tags:
- pkg
- name: Disable sndiod
service:
name: sndiod
enabled: no
state: stopped
tags:
- pkg