ansible/roles/pi-sispmctl/tasks/main.yml

22 lines
756 B
YAML
Raw Normal View History

2020-05-10 15:25:38 +02:00
---
- name: Check if sispmctl already exists
2020-05-16 18:35:44 +02:00
stat: path=/usr/bin/sispmctl
register: sispmctl_file
2020-05-10 15:25:38 +02:00
- name: Install dependencies
apt: name="libusb-dev" cache_valid_time=7200 state=present
2020-05-10 15:25:38 +02:00
- name: Copy sispmctl sources
unarchive: src=sispmctl-4.7.tar.gz dest=/tmp
when: sispmctl_file.stat.exists == false
2020-05-10 15:25:38 +02:00
- name: Build and install
shell: cd /tmp/sispmctl*/ && ./configure --prefix=/usr && make install
when: sispmctl_file.stat.exists == false
2020-05-10 15:25:38 +02:00
- name: Install systemd service file
copy: src=sispmctl.service dest=/lib/systemd/system/
- name: Add script to autostart and start now
systemd: name=sispmctl state=started enabled=yes daemon_reload=yes
- name: Add to sysdweb
include_role:
name: pi-sysdweb
vars:
sysdweb_name: sispmctl