Use generic service model for matrix appservices

This commit is contained in:
Alexandre Iooss 2019-03-30 13:26:20 +01:00
parent e1a3dda771
commit 48d521fb00
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
15 changed files with 115 additions and 125 deletions

View File

@ -1,15 +1,15 @@
---
# appservice_name is the name of the project on GitHub
appservice_name: matrix-appservice-discord
# service_name is the name of the project on GitHub
service_name: matrix-appservice-discord
# URL to clone
appservice_repo: https://github.com/Half-Shot/matrix-appservice-discord.git
service_repo: https://github.com/Half-Shot/matrix-appservice-discord.git
# name of the service user
# It means that you will have to `sudo -u THISUSER zsh` to debug
appservice_user: "{{ appservice_name }}"
appservice_homedir: "/var/local/{{ appservice_name }}"
service_user: "{{ service_name }}"
service_homedir: "/var/local/{{ service_name }}"
# appservice_path is where the project is cloned
# service_path is where the project is cloned
# It can't be the home directory because of user hidden files.
appservice_path: "{{ appservice_homedir }}/{{ appservice_name }}"
service_path: "{{ service_homedir }}/{{ service_name }}"

View File

@ -2,22 +2,22 @@
# Create service user
- include_tasks: service_user.yml
- name: "Clone {{ appservice_name }} project"
- name: "Clone {{ service_name }} project"
git:
repo: "{{ appservice_repo }}"
dest: "{{ appservice_path }}"
repo: "{{ service_repo }}"
dest: "{{ service_path }}"
version: 14cf2829510e8b7b99b3238e2deaddf296ab4b76
become: true
become_user: "{{ appservice_user }}"
become_user: "{{ service_user }}"
# Setup dependencies
# May create issues with package-lock.json not in gitignore
- name: "Install {{ appservice_name }} dependencies"
- name: "Install {{ service_name }} dependencies"
npm:
path: "{{ appservice_path }}"
path: "{{ service_path }}"
production: true
become: true
become_user: "{{ appservice_user }}"
become_user: "{{ service_user }}"
register: npm_result
retries: 3
until: npm_result is succeeded
@ -26,25 +26,25 @@
- name: Compile matrix-appservice-discord
command: ./node_modules/.bin/tsc
args:
chdir: "{{ appservice_path }}"
chdir: "{{ service_path }}"
register: npm_build_result
changed_when: npm_build_result
become: true
become_user: "{{ appservice_user }}"
become_user: "{{ service_user }}"
- name: "Configure {{ appservice_name }}"
- name: "Configure {{ service_name }}"
template:
src: config.yaml.j2
dest: "{{ appservice_path }}/config.yaml"
owner: "{{ appservice_user }}"
dest: "{{ service_path }}/config.yaml"
owner: "{{ service_user }}"
group: nogroup
mode: 0600
# Service file
- name: "Install {{ appservice_name }} systemd unit"
- name: "Install {{ service_name }} systemd unit"
template:
src: systemd/matrix-appservice-discord.service.j2
dest: "/etc/systemd/system/{{ appservice_name }}.service"
src: systemd/appservice.service.j2
dest: "/etc/systemd/system/{{ service_name }}.service"
owner: root
group: root
mode: 0644
@ -54,16 +54,16 @@
- name: Copy appservice registration file
copy:
src: "{{ appservice_path }}/discord-registration.yaml"
dest: "/etc/matrix-synapse/{{ appservice_name }}-registration.yaml"
src: "{{ service_path }}/discord-registration.yaml"
dest: "/etc/matrix-synapse/{{ service_name }}-registration.yaml"
owner: matrix-synapse
group: nogroup
mode: 0600
remote_src: yes
# Run
- name: "Ensure that {{ appservice_name }} is started"
- name: "Ensure that {{ service_name }} is started"
service:
name: "{{ appservice_name }}"
name: "{{ service_name }}"
state: started
enabled: true

View File

@ -1,19 +1,19 @@
---
# Having a custom group is useless so use nogroup
- name: "Create {{ appservice_user }} user"
- name: "Create {{ service_user }} user"
user:
name: "{{ appservice_user }}"
name: "{{ service_user }}"
group: nogroup
home: "{{ appservice_homedir }}"
home: "{{ service_homedir }}"
system: true
shell: /bin/false
state: present
# Only service user should be able to go there
- name: "Secure {{ appservice_user }} home directory"
- name: "Secure {{ service_user }} home directory"
file:
path: "{{ appservice_homedir }}"
path: "{{ service_homedir }}"
state: directory
owner: "{{ appservice_user }}"
owner: "{{ service_user }}"
group: nogroup
mode: 0700

View File

@ -7,12 +7,12 @@ Conflicts=shutdown.target
[Service]
Type=simple
User=matrix-appservice-discord
Group=matrix-appservice-discord
WorkingDirectory=/var/local/matrix-appservice-discord/matrix-appservice-discord
User={{ service_user }}
WorkingDirectory={{ service_path }}
Environment="NODE_ENV=production"
ExecStart=/usr/bin/nodejs ./build/src/discordas.js -p 9005 -c config.yaml
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.target

View File

@ -1,15 +1,15 @@
---
# appservice_name is the name of the project on GitHub
appservice_name: matrix-appservice-irc
# service_name is the name of the project on GitHub
service_name: matrix-appservice-irc
# URL to clone
appservice_repo: https://github.com/matrix-org/matrix-appservice-irc.git
service_repo: https://github.com/matrix-org/matrix-appservice-irc.git
# name of the service user
# It means that you will have to `sudo -u THISUSER zsh` to debug
appservice_user: "{{ appservice_name }}"
appservice_homedir: "/var/local/{{ appservice_name }}"
service_user: "{{ service_name }}"
service_homedir: "/var/local/{{ service_name }}"
# appservice_path is where the project is cloned
# service_path is where the project is cloned
# It can't be the home directory because of user hidden files.
appservice_path: "{{ appservice_homedir }}/{{ appservice_name }}"
service_path: "{{ service_homedir }}/{{ service_name }}"

View File

@ -2,38 +2,38 @@
# Create service user
- include_tasks: service_user.yml
- name: "Clone {{ appservice_name }} project"
- name: "Clone {{ service_name }} project"
git:
repo: "{{ appservice_repo }}"
dest: "{{ appservice_path }}"
repo: "{{ service_repo }}"
dest: "{{ service_path }}"
version: 0.11.2
become: true
become_user: "{{ appservice_user }}"
become_user: "{{ service_user }}"
# Setup dependencies
- name: "Install {{ appservice_name }} dependencies"
- name: "Install {{ service_name }} dependencies"
npm:
path: "{{ appservice_path }}"
path: "{{ service_path }}"
production: true
become: true
become_user: "{{ appservice_user }}"
become_user: "{{ service_user }}"
register: npm_result
retries: 3
until: npm_result is succeeded
- name: "Configure {{ appservice_name }}"
- name: "Configure {{ service_name }}"
template:
src: config.yaml.j2
dest: "{{ appservice_path }}/config.yaml"
owner: "{{ appservice_user }}"
dest: "{{ service_path }}/config.yaml"
owner: "{{ service_user }}"
group: nogroup
mode: 0600
# Service file
- name: "Install {{ appservice_name }} systemd unit"
- name: "Install {{ service_name }} systemd unit"
template:
src: systemd/matrix-appservice-irc.service.j2
dest: "/etc/systemd/system/{{ appservice_name }}.service"
src: systemd/appservice.service.j2
dest: "/etc/systemd/system/{{ service_name }}.service"
owner: root
group: root
mode: 0644
@ -43,16 +43,16 @@
#- name: Copy appservice registration file
# copy:
# src: "{{ appservice_path }}/discord-registration.yaml"
# dest: "/etc/matrix-synapse/{{ appservice_name }}-registration.yaml"
# src: "{{ service_path }}/discord-registration.yaml"
# dest: "/etc/matrix-synapse/{{ service_name }}-registration.yaml"
# owner: matrix-synapse
# group: nogroup
# mode: 0600
# remote_src: yes
# Run
#- name: Ensure that matrix-appservice-irc is started
#- name: "Ensure that {{ service_name }} is started"
# service:
# name: matrix-appservice-irc
# name: "{{ service_name }}"
# state: started
# enabled: true

View File

@ -1,19 +1,19 @@
---
# Having a custom group is useless so use nogroup
- name: "Create {{ appservice_user }} user"
- name: "Create {{ service_user }} user"
user:
name: "{{ appservice_user }}"
name: "{{ service_user }}"
group: nogroup
home: "{{ appservice_homedir }}"
home: "{{ service_homedir }}"
system: true
shell: /bin/false
state: present
# Only service user should be able to go there
- name: "Secure {{ appservice_user }} home directory"
- name: "Secure {{ service_user }} home directory"
file:
path: "{{ appservice_homedir }}"
path: "{{ service_homedir }}"
state: directory
owner: "{{ appservice_user }}"
owner: "{{ service_user }}"
group: nogroup
mode: 0700

View File

@ -1,5 +0,0 @@
# {{ ansible_managed }}
Package: node* libuv1*
Pin: release a=stretch-backports
Pin-Priority: 600

View File

@ -0,0 +1,17 @@
# {{ ansible_managed }}
[Unit]
Description=A bridge between Matrix and IRC
After=syslog.target network-online.target mysql.service postgresql.service
Conflicts=shutdown.target
[Service]
Type=simple
User={{ service_user }}
WorkingDirectory={{ service_path }}
ExecStart=/usr/bin/nodejs ./app.js -c config.yaml -f my_registration_file.yaml -p 9999
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.target

View File

@ -1,17 +0,0 @@
# {{ ansible_managed }}
[Unit]
Description=A bridge between Matrix and IRC
After=syslog.target network-online.target mysql.service postgresql.service
Conflicts=shutdown.target
[Service]
Type=simple
User=matrix-appservice-irc
Group=matrix-appservice-irc
WorkingDirectory=/var/local/matrix-appservice-irc/matrix-appservice-irc
ExecStart=/usr/bin/nodejs /var/local/matrix-appservice-irc/matrix-appservice-irc/app.js -c config.yaml -f my_registration_file.yaml -p 9999
Restart=always
[Install]
WantedBy=multi-user.target

View File

@ -1,15 +1,15 @@
---
# appservice_name is the name of the project on GitHub
appservice_name: matrix-appservice-webhooks
# service_name is the name of the project on GitHub
service_name: matrix-appservice-webhooks
# URL to clone
appservice_repo: https://github.com/turt2live/matrix-appservice-webhooks.git
service_repo: https://github.com/turt2live/matrix-appservice-webhooks.git
# name of the service user
# It means that you will have to `sudo -u THISUSER zsh` to debug
appservice_user: "{{ appservice_name }}"
appservice_homedir: "/var/local/{{ appservice_name }}"
service_user: "{{ service_name }}"
service_homedir: "/var/local/{{ service_name }}"
# appservice_path is where the project is cloned
# service_path is where the project is cloned
# It can't be the home directory because of user hidden files.
appservice_path: "{{ appservice_homedir }}/{{ appservice_name }}"
service_path: "{{ service_homedir }}/{{ service_name }}"

View File

@ -2,38 +2,38 @@
# Create service user
- include_tasks: service_user.yml
- name: "Clone {{ appservice_name }} project"
- name: "Clone {{ service_name }} project"
git:
repo: "{{ appservice_repo }}"
dest: "{{ appservice_path }}"
repo: "{{ service_repo }}"
dest: "{{ service_path }}"
version: master
become: true
become_user: "{{ appservice_user }}"
become_user: "{{ service_user }}"
# Setup dependencies
- name: "Install {{ appservice_name }} dependencies"
- name: "Install {{ service_name }} dependencies"
npm:
path: "{{ appservice_path }}"
path: "{{ service_path }}"
production: true
become: true
become_user: "{{ appservice_user }}"
become_user: "{{ service_user }}"
register: npm_result
retries: 3
until: npm_result is succeeded
- name: "Configure {{ appservice_name }}"
- name: "Configure {{ service_name }}"
template:
src: config.yaml.j2
dest: "{{ appservice_path }}/config/config.yaml"
owner: "{{ appservice_user }}"
dest: "{{ service_path }}/config/config.yaml"
owner: "{{ service_user }}"
group: nogroup
mode: 0600
# Service file
- name: "Install {{ appservice_name }} systemd unit"
- name: "Install {{ service_name }} systemd unit"
template:
src: systemd/matrix-appservice-webhooks.service.j2
dest: "/etc/systemd/system/{{ appservice_name }}.service"
src: systemd/appservice.service.j2
dest: "/etc/systemd/system/{{ service_name }}.service"
owner: root
group: root
mode: 0644
@ -43,16 +43,16 @@
- name: Copy appservice registration file
copy:
src: "{{ appservice_path }}/appservice-registration-webhooks.yaml"
dest: "/etc/matrix-synapse/{{ appservice_name }}-registration.yaml"
src: "{{ service_path }}/appservice-registration-webhooks.yaml"
dest: "/etc/matrix-synapse/{{ service_name }}-registration.yaml"
owner: matrix-synapse
group: nogroup
mode: 0600
remote_src: yes
# Run
- name: "Ensure that {{ appservice_name }} is started"
- name: "Ensure that {{ service_name }} is started"
service:
name: "{{ appservice_name }}"
name: "{{ service_name }}"
state: started
enabled: true

View File

@ -1,19 +1,19 @@
---
# Having a custom group is useless so use nogroup
- name: "Create {{ appservice_user }} user"
- name: "Create {{ service_user }} user"
user:
name: "{{ appservice_user }}"
name: "{{ service_user }}"
group: nogroup
home: "{{ appservice_homedir }}"
home: "{{ service_homedir }}"
system: true
shell: /bin/false
state: present
# Only service user should be able to go there
- name: "Secure {{ appservice_user }} home directory"
- name: "Secure {{ service_user }} home directory"
file:
path: "{{ appservice_homedir }}"
path: "{{ service_homedir }}"
state: directory
owner: "{{ appservice_user }}"
owner: "{{ service_user }}"
group: nogroup
mode: 0700

View File

@ -1,5 +0,0 @@
# {{ ansible_managed }}
Package: node* libuv1*
Pin: release a=stretch-backports
Pin-Priority: 600

View File

@ -7,11 +7,11 @@ Conflicts=shutdown.target
[Service]
Type=simple
User=matrix-appservice-webhooks
Group=matrix-appservice-webhooks
WorkingDirectory=/var/local/matrix-appservice-webhooks/matrix-appservice-webhooks
User={{ service_user }}
WorkingDirectory={{ service_path }}
ExecStart=/usr/bin/nodejs index.js -p 9000 -c config/config.yaml -f appservice-registration-webhooks.yaml
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.target