homeserver/roles/robertdebock.bootstrap/molecule/default/converge.yml
mg 686a0b281f Rolle aktualisiert: bootstrap (#457)
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: #457
2023-02-17 12:06:35 +01:00

16 lines
622 B
YAML

---
- name: Converge
hosts: all
# This role installs packages using the `raw` module and needs to connect as
# `root`. (`sudo` is not available before bootstrapping.) All tasks in the
# role have `become` set to `no`, so you can use either `no` or `yes` for
# `become`, the role will not use become (so `sudo`) for any task.
become: yes # `no` will also work.
# This role installs python, gathering facts can't be done before `python` is
# installed. This role runs the `setup` module, so facts will be available
# after running the role.
gather_facts: no
roles:
- role: ansible-role-bootstrap