add ignore_errors for wifi

This commit is contained in:
Ruan Bekker 2020-10-17 20:16:13 +02:00 committed by GitHub
parent 0bd9fb94bd
commit 4fd6cab289
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,12 +41,13 @@
- name: set wifi country - name: set wifi country
command: "raspiconfig nonint do_wifi_country {{ myconfig.wifi_country }}" command: "raspiconfig nonint do_wifi_country {{ myconfig.wifi_country }}"
when: "'wifi_country' in myconfig and myconfig.wifi_country != raspi_wifi_country" when: "'wifi_country' in myconfig and myconfig.wifi_country != raspi_wifi_country"
ignore_errors: True #to avoid error when WiFi is not present
# Enable sshd # Enable sshd
- name: disable ssh login for user pi - name: disable ssh login for user pi
lineinfile: lineinfile:
dest=/etc/ssh/sshd_config dest=/etc/ssh/sshd_config
line="DenyUsers pi" line="DenyUsers root"
state=present state=present
tags: tags:
- raspi - raspi