Fix: wrong use of register

This commit is contained in:
Bertrand Benjamin 2019-02-08 09:11:46 +01:00
parent 4c6648b84c
commit 17b05c8f2e
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
- name: Set shell for root
user:
name: root
shell: "{{ prompt_place }}"
shell: "{{ prompt_place["stdout"] }}"
tags:
- first_deployement

View File

@ -8,7 +8,7 @@
name: "{{ item.username }}"
password: "{{ item.password }}"
uid: "{{ item.uid }}"
shell: "{{ prompt_place }}"
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 }}"
shell: "{{ prompt_place["stdout"] }}"
with_items: "{{ me }}"
when: not minimal or not server
tags: