[TIDY] fix ansible-lint issues
This commit is contained in:
parent
78df6551ac
commit
e86374973a
13 changed files with 62 additions and 44 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
# Install Visual Studio Code and Set Basic Configuration
|
||||
- name: VSCode - Basics
|
||||
when: user_vscode == true
|
||||
when: user_vscode
|
||||
block:
|
||||
- name: VSCode - Basics - Install
|
||||
become: true
|
||||
|
@ -37,14 +37,16 @@
|
|||
ansible.builtin.file:
|
||||
path: "{{ ansible_user_dir }}/.config/Code/User"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
- name: VSCode - Basics - Copy global settings
|
||||
ansible.builtin.copy:
|
||||
src: "{{ role_path }}/files/vscode-settings.json"
|
||||
dest: "{{ ansible_user_dir }}/.config/Code/User/settings.json"
|
||||
mode: "0644"
|
||||
|
||||
# Dev Env - C/C++ Development Tools
|
||||
- name: Devel - C/C++
|
||||
when: user_lang_cpp == true
|
||||
when: user_lang_cpp
|
||||
block:
|
||||
- name: Devel - C/C++ - Install developer tools
|
||||
become: true
|
||||
|
@ -61,7 +63,7 @@
|
|||
|
||||
# Dev Env - Golang Development Tools
|
||||
- name: Devel - Golang
|
||||
when: user_lang_golang == true
|
||||
when: user_lang_golang
|
||||
block:
|
||||
- name: Devel - Golang - Install developer tools
|
||||
become: true
|
||||
|
@ -75,7 +77,7 @@
|
|||
|
||||
# Dev Env - LaTeX Distribution
|
||||
- name: Devel - LaTeX
|
||||
when: user_lang_latex == true
|
||||
when: user_lang_latex
|
||||
block:
|
||||
- name: Devel - LaTeX - Install basic TeX distribution
|
||||
become: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue