EvoBSD/roles/base/tasks/packages.yml

52 lines
908 B
YAML
Raw Normal View History

2018-12-28 11:23:49 +01:00
---
- name: "Configure installurl"
ansible.builtin.copy:
content: "{{ evobsd_install_url }}\n"
2018-12-28 11:23:49 +01:00
dest: /etc/installurl
mode: "0644"
2018-12-28 11:23:49 +01:00
tags:
- pkg
# openbsd_pkg is broken since OpenBSD 7.4 with the version of Ansible we currently use
#- name: "Install packages (vim rsync mtr etc)"
# community.general.openbsd_pkg:
# name:
# - wget
# - vim--no_x11
# - rsync--
# - mtr--
# - iftop
# - sudo--
# - bash
# - ncdu
# - htop
# ignore_errors: true
# tags:
# - pkg
- name: "Install packages (vim rsync mtr etc)"
include: openbsd_pkg_custom.yml
vars:
package: "{{ item }}"
loop:
- wget
- vim--no_x11
- rsync--
- mtr--
- iftop
- sudo--
- bash
- ncdu
- htop
2018-12-28 11:23:49 +01:00
tags:
- pkg
- name: "Disable sndiod"
ansible.builtin.service:
2019-03-22 16:05:02 +01:00
name: sndiod
enabled: false
2019-03-22 16:05:02 +01:00
state: stopped
2018-12-28 11:23:49 +01:00
tags:
- pkg