diff options
author | Ismaël Bouya <ismael.bouya@fretlink.com> | 2018-11-13 01:50:44 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@fretlink.com> | 2018-11-13 01:50:44 +0100 |
commit | e1c588d325f33930d7a98eec97ec41caf6f3d468 (patch) | |
tree | 2a4c64fb04747eccdbcc731d5db11755f021d522 /roles/tools | |
parent | 675e56e525459262cb97a651c1d9e65cb5f37e2c (diff) | |
download | Ansible-e1c588d325f33930d7a98eec97ec41caf6f3d468.tar.gz Ansible-e1c588d325f33930d7a98eec97ec41caf6f3d468.tar.zst Ansible-e1c588d325f33930d7a98eec97ec41caf6f3d468.zip |
Cleanup item loop controls
Diffstat (limited to 'roles/tools')
-rw-r--r-- | roles/tools/tasks/main.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/roles/tools/tasks/main.yml b/roles/tools/tasks/main.yml index 94324fc..e9eb887 100644 --- a/roles/tools/tasks/main.yml +++ b/roles/tools/tasks/main.yml | |||
@@ -1,10 +1,12 @@ | |||
1 | --- | 1 | --- |
2 | - name: Import other tools | 2 | - name: Import other tools |
3 | include_role: | 3 | include_role: |
4 | name: "{{ item }}" | 4 | name: "{{ tool_import_item }}" |
5 | loop: | 5 | loop: |
6 | - git | 6 | - git |
7 | - gnupg | 7 | - gnupg |
8 | loop_control: | ||
9 | loop_var: tool_import_item | ||
8 | - name: Config dirs | 10 | - name: Config dirs |
9 | file: | 11 | file: |
10 | state: directory | 12 | state: directory |