diff --git a/tasks/prompt.yml b/tasks/prompt.yml index 2346d99..b1b1cc6 100644 --- a/tasks/prompt.yml +++ b/tasks/prompt.yml @@ -18,7 +18,7 @@ - name: Set shell for root user: name: root - shell: "{{ prompt_place["stdout"] }}" + shell: "{{ prompt_place['stdout'] }}" tags: - first_deployement diff --git a/tasks/users.yml b/tasks/users.yml index 4e6ae36..895ad31 100644 --- a/tasks/users.yml +++ b/tasks/users.yml @@ -8,7 +8,7 @@ name: "{{ item.username }}" password: "{{ item.password }}" uid: "{{ item.uid }}" - shell: "{{ prompt_place["stdout"] }}" + shell: "{{ prompt_place['stdout'] }}" with_items: "{{ deploy_users }}" tags: - first_deployement @@ -18,7 +18,7 @@ name: "{{ item.username }}" password: "{{ item.password }}" uid: "{{ item.uid }}" - shell: "{{ prompt_place["stdout"] }}" + shell: "{{ prompt_place['stdout'] }}" with_items: "{{ me }}" when: not minimal or not server tags: