Remove string quotes
This commit is contained in:
parent
df996873ee
commit
a189792ad1
1 changed files with 4 additions and 4 deletions
|
@ -1,23 +1,23 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: "Add flyingscorpio to the sudo group"
|
- name: Add flyingscorpio to the sudo group
|
||||||
user:
|
user:
|
||||||
name: flyingscorpio
|
name: flyingscorpio
|
||||||
become: true
|
become: true
|
||||||
groups: sudo
|
groups: sudo
|
||||||
append: yes
|
append: yes
|
||||||
|
|
||||||
- name: "Add flyingscorpio to the wheel group"
|
- name: Add flyingscorpio to the wheel group
|
||||||
user:
|
user:
|
||||||
name: flyingscorpio
|
name: flyingscorpio
|
||||||
become: true
|
become: true
|
||||||
groups: wheel
|
groups: wheel
|
||||||
append: yes
|
append: yes
|
||||||
|
|
||||||
- name: "Send public SSH key"
|
- name: Send public SSH key
|
||||||
authorized_key:
|
authorized_key:
|
||||||
become: true
|
become: true
|
||||||
ask-become-pass: true
|
ask-become-pass: true
|
||||||
user: flyingscorpio
|
user: flyingscorpio
|
||||||
state: present
|
state: present
|
||||||
key: "{{ lookup("file", "~/.ssh/id_ed25519_lime2.pub") }}"
|
key: {{ lookup("file", "~/.ssh/id_ed25519_lime2.pub") }}
|
||||||
|
|
Loading…
Reference in a new issue