generated from sebclem/ansible-role-template
Change users to antidote_users
This commit is contained in:
parent
4ea6ee162b
commit
f3d819461c
@ -4,4 +4,4 @@
|
|||||||
antidote_version: "1.6.4"
|
antidote_version: "1.6.4"
|
||||||
antidote_mirror: "https://github.com/mattmc3/antidote/archive/refs/tags/"
|
antidote_mirror: "https://github.com/mattmc3/antidote/archive/refs/tags/"
|
||||||
antidote_download_dir: "{{ x_ansible_download_dir | default(ansible_env.HOME + '/.ansible/tmp/downloads') }}"
|
antidote_download_dir: "{{ x_ansible_download_dir | default(ansible_env.HOME + '/.ansible/tmp/downloads') }}"
|
||||||
users: []
|
antidote_users: []
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
name: "{{ user.username }}"
|
name: "{{ user.username }}"
|
||||||
shell: /bin/zsh
|
shell: /bin/zsh
|
||||||
when: user.antidote_plugins is defined
|
when: user.antidote_plugins is defined
|
||||||
loop: "{{ users }}"
|
loop: "{{ antidote_users }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: user
|
loop_var: user
|
||||||
label: "{{ user.username }}"
|
label: "{{ user.username }}"
|
||||||
@ -18,7 +18,7 @@
|
|||||||
dest: "~{{ user.username }}/.antidoterc"
|
dest: "~{{ user.username }}/.antidoterc"
|
||||||
mode: "u=rw,go=r"
|
mode: "u=rw,go=r"
|
||||||
when: user.antidote_plugins is defined
|
when: user.antidote_plugins is defined
|
||||||
loop: "{{ users }}"
|
loop: "{{ antidote_users }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: user
|
loop_var: user
|
||||||
label: "{{ user.username }}"
|
label: "{{ user.username }}"
|
||||||
@ -31,7 +31,7 @@
|
|||||||
dest: "~{{ user.username }}/.zsh_plugins.txt"
|
dest: "~{{ user.username }}/.zsh_plugins.txt"
|
||||||
mode: "u=rw,go=r"
|
mode: "u=rw,go=r"
|
||||||
when: user.antidote_plugins is defined
|
when: user.antidote_plugins is defined
|
||||||
loop: "{{ users }}"
|
loop: "{{ antidote_users }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: user
|
loop_var: user
|
||||||
label: "{{ user.username }}"
|
label: "{{ user.username }}"
|
||||||
@ -45,7 +45,7 @@
|
|||||||
create: yes
|
create: yes
|
||||||
mode: "u=rw,go=r"
|
mode: "u=rw,go=r"
|
||||||
when: user.antidote_plugins is defined
|
when: user.antidote_plugins is defined
|
||||||
loop: "{{ users }}"
|
loop: "{{ antidote_users }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: user
|
loop_var: user
|
||||||
label: "{{ user.username }}"
|
label: "{{ user.username }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user