playbook_incus/incus.yml

23 lines
495 B
YAML

---
###########################################################################
#
# This playbook will install incus to the target host.
#
# - installation instructions from https://github.com/zabbly/incus#installation
#
# - expects variable named "username" be defined, to define administrative user
#
###########################################################################
- hosts: all
gather_facts: true
user: root
vars:
username: "rmorrow"
roles:
- role: incus
# EOF