You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
405 B
YAML
18 lines
405 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
|
|
raw: export PKG_PATH=http://ftp.eu.openbsd.org/pub/OpenBSD/$(uname -r)/packages/$(uname -p)/; pkg_add -z python-3
|
|
|
|
# vim:ft=ansible
|