EvoBSD/prerequisite.yml

19 lignes
446 B
YAML

# Playbook command
# ansible-playbook prerequisite.yml -CDi hosts -l HOSTNAME
---
- hosts: all
become: true
become_method: su
user: root
gather_facts: false
tasks:
- name: Install ansible's prerequisite
# yamllint disable-line rule:line-length
ansible.builtin.raw: export PKG_PATH=http://ftp.eu.openbsd.org/pub/OpenBSD/$(uname -r)/packages/$(uname -p)/; pkg_add -z python-3
changed_when: true
# vim:ft=ansible