EvoBSD/roles/base/tasks/packages.yml

32 lines
456 B
YAML
Raw Normal View History

2018-12-28 11:23:49 +01:00
---
- 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
- postgresql-client
tags:
- pkg
- name: Install sudo
openbsd_pkg:
name: "{{ item }}"
state: present
with_items:
- sudo--
tags:
- pkg