You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: home directory
- file:
- path: "{{ users[item].home | default('/home/'+item) }}"
- owner: "{{ item }}"
- group: "{{ item }}"
- mode: "{{ users[item].homedir_mode | default(700) }}"
- state: directory
- with_items: "{{ users.keys() }}"
|