mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
ansible-lint 6.5.0 complains about: name: All names should start with an uppercase letter. (name[casing])
12 lines
258 B
YAML
12 lines
258 B
YAML
# This script is for provisioning a server for first boot.
|
|
# Care: It is not idempotent by design.
|
|
|
|
- name: Install arch
|
|
hosts: all
|
|
remote_user: root
|
|
roles:
|
|
- install_arch
|
|
vars:
|
|
- bootstrap_version: "latest"
|
|
- sshd_enable_includes: false
|