forked from bitlair/ansible
services: Add irc-bot
This commit is contained in:
parent
15472589a9
commit
8f02606c7b
4 changed files with 53 additions and 6 deletions
|
@ -1,18 +1,18 @@
|
|||
---
|
||||
- import_tasks: ../../common/handlers/main.yaml
|
||||
|
||||
- name: restart irc-bot
|
||||
systemd:
|
||||
name: irc-bot
|
||||
state: restarted
|
||||
daemon_reload: true
|
||||
|
||||
- name: restart flipdot
|
||||
systemd:
|
||||
name: flipdot
|
||||
state: restarted
|
||||
daemon_reload: true
|
||||
|
||||
- name: restart irc-bot
|
||||
systemd:
|
||||
name: irc-bot
|
||||
state: restarted
|
||||
daemon_reload: true
|
||||
|
||||
- name: restart siahsd
|
||||
systemd:
|
||||
name: siahsd
|
||||
|
|
29
roles/services/tasks/ircbot.yaml
Normal file
29
roles/services/tasks/ircbot.yaml
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
- name: Clone source
|
||||
git:
|
||||
repo: https://github.com/bitlair/irc-bot.git
|
||||
version: master
|
||||
dest: /var/lib/irc-bot
|
||||
accept_hostkey: yes
|
||||
|
||||
- name: Link irc-say
|
||||
file:
|
||||
state: link
|
||||
src: /var/lib/irc-bot/irc-say
|
||||
dest: /usr/local/bin/irc-say
|
||||
|
||||
- name: Install service file
|
||||
template:
|
||||
src: irc-bot.service
|
||||
dest: /etc/systemd/system/irc-bot.service
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
notify: restart irc-bot
|
||||
|
||||
- name: Start irc-bot
|
||||
systemd:
|
||||
name: irc-bot
|
||||
state: started
|
||||
enabled: yes
|
||||
daemon_reload: true
|
|
@ -1,4 +1,7 @@
|
|||
---
|
||||
- tags: services_ircbot
|
||||
import_tasks: ircbot.yaml
|
||||
|
||||
- tags: services_flipdot
|
||||
import_tasks: flipdot.yaml
|
||||
|
||||
|
|
15
roles/services/templates/irc-bot.service
Normal file
15
roles/services/templates/irc-bot.service
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Managed by Ansible
|
||||
|
||||
[Unit]
|
||||
Description=Bitlair IRC bot
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/bin/bash /var/lib/irc-bot/irc-bot
|
||||
Restart=on-failure
|
||||
RestartSec=10s
|
||||
DynamicUser=true
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Add table
Reference in a new issue