Add role for services
This commit is contained in:
parent
1191dd2534
commit
cdc9f519f0
9 changed files with 171 additions and 0 deletions
30
roles/services/tasks/spacestated.yaml
Normal file
30
roles/services/tasks/spacestated.yaml
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
- name: Install mqtt-simple
|
||||
command: cpan Net::MQTT::Simple
|
||||
|
||||
- name: Install dependencies
|
||||
apt:
|
||||
name: [ php-cli, php-snmp ]
|
||||
|
||||
- name: Add user
|
||||
user:
|
||||
name: spacestated
|
||||
home: /var/lib/spacestated
|
||||
generate_ssh_key: yes
|
||||
ssh_key_type: ed25519
|
||||
|
||||
- name: Clone source
|
||||
git:
|
||||
repo: https://github.com/bitlair/spacestated.git
|
||||
version: main
|
||||
dest: /var/lib/spacestated/spacestated
|
||||
accept_hostkey: yes
|
||||
|
||||
- name: Install service file
|
||||
template:
|
||||
src: spacestated.service
|
||||
dest: /etc/systemd/system/spacestated.service
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
notify: restart spacestated
|
Loading…
Add table
Add a link
Reference in a new issue