source: admin/Sources/Services/opengnsys.service @ 4d78df3

Last change on this file since 4d78df3 was 7e77105, checked in by OpenGnSys Support Team <soporte-og@…>, 5 years ago

#981 Fix typo on OpenGnsys systemd unit file

This commit escape the "%" character with another "%" character as
systemd unit manual says:
https://www.freedesktop.org/software/systemd/man/systemd.unit.html#Specifiers

  • Property mode set to 100644
File size: 536 bytes
Line 
1# OpenGnsys systemd service file
2
3[Unit]
4Documentation=https://opengnsys.es/trac/wiki/En%%3ADocumentacionUsuario
5SourcePath=/etc/init.d/opengnsys
6Description=LSB: OpenGnsys system services
7Before=multi-user.target
8Before=graphical.target
9Requires=mysql.service
10After=mysql.service
11
12[Install]
13WantedBy=multi-user.target
14
15[Service]
16Type=forking
17Restart=no
18TimeoutSec=5min
19IgnoreSIGPIPE=no
20KillMode=process
21GuessMainPID=no
22RemainAfterExit=yes
23SuccessExitStatus=5 6
24ExecStart=/etc/init.d/opengnsys start
25ExecStop=/etc/init.d/opengnsys stop
Note: See TracBrowser for help on using the repository browser.