From fd0d0ad67e6781963c96988353b745aae8901075 Mon Sep 17 00:00:00 2001 From: biva Date: Wed, 22 Jun 2022 10:50:57 +0200 Subject: [PATCH] Adapt to PostgreSQL (#375) Question: in https://docs.mattermost.com/install/install-debian.html#install-postgresql-database-server, I see `BindsTo=postgresql.service` while in the original file here I find `Requires=mysql.service`. I don't know which one makes sense, so I keep the orinigal Yunohost version (Requires) --- conf/systemd.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/systemd.service b/conf/systemd.service index 53b1f6a..1b2b352 100644 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -1,8 +1,8 @@ [Unit] Description=Mattermost After=network.target -After=mysql.service -Requires=mysql.service +After=postgresql.service +Requires=postgresql.service [Service] Type=notify