1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00

systemd: Remove spaces around "="

systemd files should not have spaces around the "=", as apparently that
causes problems due to bad parsers.
This commit is contained in:
Alberto Bertogli
2016-11-21 21:57:40 +00:00
parent f7cdbae8e3
commit 279fff3cf8

View File

@@ -1,23 +1,23 @@
[Unit]
Description=chasquid mail daemon (service)
Requires = chasquid-smtp.socket chasquid-submission.socket
Requires=chasquid-smtp.socket chasquid-submission.socket
[Service]
ExecStart = /usr/local/bin/chasquid \
ExecStart=/usr/local/bin/chasquid \
# -v=3 \
# --log_dir=/var/log/chasquid/ \
# --alsologtostderr \
Type = simple
Restart = always
Type=simple
Restart=always
User = mail
Group = mail
User=mail
Group=mail
# Simple security measures just in case.
ProtectSystem = full
ProtectSystem=full
[Install]
WantedBy = multi-user.target
WantedBy=multi-user.target