Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidat committed Jun 22, 2021
1 parent 245421f commit ff64131
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions roles/control_node/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@

- name: install community.general collection
command:
cmd: ansible-galaxy collection install -f -p /home/{{ username }}/.ansible/collections/ community.general
cmd: "ansible-galaxy collection install -f -p /home/{{ username }}/.ansible/collections/ community.general"

- name: fix collection ownership permissions
file:
path: /home/{{ username }}/.ansible/collections
path: "/home/{{ username }}/.ansible/collections"
state: directory
owner: {{ username }}
group: {{ username }}
owner: "{{ username }}"
group: "{{ username }}"
mode: 755
recurse: yes

Expand Down

0 comments on commit ff64131

Please sign in to comment.