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])
6 lines
267 B
YAML
6 lines
267 B
YAML
- name: Create .ssh directory
|
|
file: path={{ root_ssh_directory }} state=directory owner=root group=root mode=0700
|
|
|
|
- name: Add authorized keys for root
|
|
template: src=authorized_keys.j2 dest={{ root_ssh_directory }}/authorized_keys mode=0600 owner=root group=root
|