Sytax fix

This commit is contained in:
git
2023-05-18 16:13:37 +02:00
parent ee38cf8458
commit 89bb7de3be
5 changed files with 12 additions and 13 deletions

View File

@@ -5,12 +5,11 @@
user: warezjoe user: warezjoe
host: desktop # desktop rpi ntb host: desktop # desktop rpi ntb
roles: roles:
- role: linux_config_init # run with sudo alone # run with sudo alone
#- role: import_ssh_key # without sudo - role: linux_config_init
#- role: tools_for_command_line # - role: import_ssh_key # without sudo
#- role: service_start # - role: tools_for_command_line
#- role: gui_app_init # - role: service_start
#- role: ansible-role-docker # - role: gui_app_init
# - role: ansible-role-docker
# docker_users: "{{ user }}" # docker_users: "{{ user }}"

View File

@@ -6,7 +6,7 @@
- name: Hack exists - name: Hack exists
shell: "ls /home/{{ user }}/.local/share/fonts/Hack*Nerd*Font*Complete*" shell: "ls /home/{{ user }}/.local/share/fonts/Hack*Nerd*Font*Complete*"
register: hack_exists register: hack_exists
ignore_errors: yes ignore_errors: true
- name: Download Hack - name: Download Hack
when: hack_exists is failed when: hack_exists is failed

View File

@@ -3,7 +3,7 @@
- name: System settings in /etc - name: System settings in /etc
ansible.builtin.include_tasks: "{{ item }}" ansible.builtin.include_tasks: "{{ item }}"
loop: loop:
- static_dns.yml # - static_dns.yml
- sudoer_no_passwd.yml - sudoer_no_passwd.yml
- hostname_set.yml - hostname_set.yml