🔨 Copy wiringpi-latest.deb from local repository
This commit is contained in:
parent
b685d08ccd
commit
4f94574d2a
1 changed files with 9 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue