mirror of
https://github.com/ruanbekker/rpi-ansible.git
synced 2025-04-20 01:11:38 +02:00
fix detection of vnc server
This commit is contained in:
parent
e982927267
commit
76197fefda
@ -79,15 +79,6 @@
|
||||
tags:
|
||||
- raspi
|
||||
|
||||
- name: get VNC installed status
|
||||
command: systemctl status vncserver-x11-serviced
|
||||
register: systemctl_vnc_status
|
||||
failed_when: "not systemctl_vnc_status.stdout and 'failed' not in systemctl_vnc_status.stderr and 'found' not in systemctl_vnc_status.stderr"
|
||||
changed_when: False
|
||||
check_mode: no
|
||||
tags:
|
||||
- raspi
|
||||
|
||||
- name: get SPI enabled status
|
||||
shell: "raspi-config nonint get_spi"
|
||||
register: raspi_spi_disabled
|
||||
@ -203,7 +194,7 @@
|
||||
raspi_bootsplash_enabled: "{{ raspi_boot_splash.stdout == '0' }}"
|
||||
raspi_camera_enabled: "{{ raspi_camera_disabled.stdout == '0' }}"
|
||||
raspi_ssh_enabled: "{{ raspi_ssh_disabled.stdout == '0' }}"
|
||||
raspi_vnc_enabled: "{{ raspi_vnc_disabled.stdout == '0' or (systemctl_vnc_status|failed and ('find' in systemctl_vnc_status.stderr or 'found' in systemctl_vnc_status.stderr)) }}"
|
||||
raspi_vnc_enabled: "{{ raspi_vnc_disabled.stdout == '0' and 'find' not in raspi_vnc_disabled.stderr and 'found' not in raspi_vnc_disabled.stderr }}"
|
||||
raspi_spi_enabled: "{{ raspi_spi_disabled.stdout == '0' }}"
|
||||
raspi_i2c_enabled: "{{ raspi_i2c_disabled.stdout == '0' }}"
|
||||
raspi_serial_enabled: "{{ raspi_serial_disabled.stdout == '0' }}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user