EvoBSD/prerequisite.yml

19 lines
430 B
YAML
Raw Normal View History

2018-12-28 11:23:49 +01:00
# Playbook command
# ansible-playbook prerequisite.yml -CDi hosts -l HOSTNAME
---
- hosts: all
become: true
become_method: su
user: root
gather_facts: false
2018-12-28 11:23:49 +01:00
tasks:
2018-12-28 11:23:49 +01:00
- name: Install ansible's prerequisite
# yamllint disable-line rule:line-length
2020-10-23 11:38:56 +02:00
raw: export PKG_PATH=http://ftp.eu.openbsd.org/pub/OpenBSD/$(uname -r)/packages/$(uname -p)/; pkg_add -z python-3
2022-11-16 15:23:43 +01:00
changed_when: true
2018-12-28 11:23:49 +01:00
# vim:ft=ansible