37 lines
838 B
YAML
37 lines
838 B
YAML
---
|
|
- name: Install python3 IRC library
|
|
apt:
|
|
name: python3-irc
|
|
state: present
|
|
update_cache: true
|
|
register: apt_result
|
|
retries: 3
|
|
until: apt_result is succeeded
|
|
|
|
- name: Install Flask for python3
|
|
apt:
|
|
name: python3-flask
|
|
state: present
|
|
update_cache: true
|
|
register: apt_result
|
|
retries: 3
|
|
until: apt_result is succeeded
|
|
|
|
- name: Deploy NinjaBot main systemd unit
|
|
template:
|
|
src: systemd/system/ninjabot.service.j2
|
|
dest: /etc/systemd/system/ninjabot.service
|
|
mode: 0755
|
|
|
|
- name: Deploy NinjaBot webhook systemd unit
|
|
template:
|
|
src: systemd/system/ninjabot-webhook.service.j2
|
|
dest: /etc/systemd/system/ninjabot-webhook.service
|
|
mode: 0755
|
|
|
|
- name: Indicate NinjaBot in motd
|
|
template:
|
|
src: update-motd.d/05-service.j2
|
|
dest: /etc/update-motd.d/05-ninjabot
|
|
mode: 0755
|