Fixed systemd service parse error

Fixed systemd service restart specifier parse error. Restart value should be "no", "never" is not acceptable value according to systemd.service man page.

[/lib/systemd/system/proxysql.service:15] Failed to parse service restart specifier, ignoring: never
pull/1925/head
Tomas Leypold 7 years ago committed by GitHub
parent cb4f194a26
commit bea2427681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,7 +12,7 @@ ExecStart=/usr/bin/proxysql -c /etc/proxysql.cnf
PIDFile=/var/lib/proxysql/proxysql.pid
#StandardError=null # all output is in stderr
SyslogIdentifier=proxysql
Restart=never
Restart=no
User=proxysql
Group=proxysql
PermissionsStartOnly=true

Loading…
Cancel
Save