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