Fix more lint nagging

This commit is contained in:
flyingscorpio@clevo 2022-11-16 22:35:44 +01:00
parent 36bc9b121a
commit 1b4df1aee5
3 changed files with 10 additions and 4 deletions

View file

@ -1,5 +1,6 @@
---
- include_vars: vault.yml
- name: Include vault variables
include_vars: vault.yml
- name: Install git (Archlinux)
become: true
@ -19,6 +20,7 @@
copy:
src: ignore
dest: ~/.config/git/ignore
mode: 0644
- name: Check values for git_username
git_config:
@ -42,3 +44,4 @@
src: gitconfig.j2
dest: ~/.gitconfig
backup: true
mode: 0644

View file

@ -1,5 +1,6 @@
---
- include_vars: vault.yml
- name: Include vault variables
include_vars: vault.yml
- name: Install packages (Archlinux)
become: true

View file

@ -1,5 +1,6 @@
---
- include_vars: vault.yml
- name: Include vault variables
include_vars: vault.yml
- name: Clone repos
git:
@ -10,4 +11,5 @@
update: false
with_items: "{{ repos }}"
- include_tasks: vault.yml
- name: Include vault tasks
include_tasks: vault.yml