🔨 Copy wiringpi-latest.deb from local repository

This commit is contained in:
Stefan Haun 2022-11-22 14:44:30 +01:00
parent b685d08ccd
commit 4f94574d2a

View file

@ -128,21 +128,23 @@
user: "{{ gatekeeper_user }}"
special_time: reboot
- name: Download wiringPi library
- name: Copy wiringPi library deb
# WiringPi needs to be installed, but that library seems to be
# obsolete. We download something and hope it works...
ansible.builtin.get_url:
url: https://project-downloads.drogon.net/wiringpi-latest.deb
# obsolete. Download seems to be obsolete, too, so we keep it in
# the Ansible repo for now.
ansible.builtin.copy:
src: files/wiringpi-latest.deb
dest: "/home/{{ gatekeeper_user }}/wiringpi-latest.deb"
owner: "{{ gatekeeper_user }}"
group: "{{ gatekeeper_user }}"
mode: "0644"
force: no
register: wiringPi_download
register: wiringPi_copy
- name: Install wiringPi library # noqa 503
ansible.builtin.apt:
state: present
deb: "/home/{{ gatekeeper_user }}/wiringpi-latest.deb"
when: wiringPi_download.changed
when: wiringPi_copy.changed
### Rollladensteuerung