mirror of
https://gitlab.com/tildes/tildes.git
synced 2026-04-26 03:00:53 +02:00
4cc100ab02
This changes the site to run on Debian 10 instead of Ubuntu 16.04. It also fully converts the previous Salt setup to use Ansible instead. Most of this was a relatively straightforward conversion, and it should be very close to equivalent. One notable difference is that I removed the setup for the "monitoring" server, since I wasn't confident that the way of setting up self-hosted Sentry and Grafana was working any more. I'll look to re-add that at some point, but it's not urgent.
14 lines
361 B
YAML
14 lines
361 B
YAML
- name: Create postgresql_redis_bridge service file
|
|
template:
|
|
src: postgresql_redis_bridge.service.jinja2
|
|
dest: /etc/systemd/system/postgresql_redis_bridge.service
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
|
|
- name: Start and enable postgresql_redis_bridge service
|
|
service:
|
|
name: postgresql_redis_bridge
|
|
state: started
|
|
enabled: true
|