FS-11704 "DAEMON_OPTS=-ncwait -nonat" in freeswitch.server causing startup failure

This commit is contained in:
joshebosh 2019-03-12 14:13:19 -04:00 committed by Andrey Volk
parent 7e6206325a
commit 70dc40e680
1 changed files with 4 additions and 4 deletions

View File

@ -10,17 +10,17 @@ After=network.target network-online.target local-fs.target
; service
Type=forking
PIDFile=/run/freeswitch/freeswitch.pid
Environment="DAEMON_OPTS=-ncwait -nonat"
Environment="DAEMON_OPTS=-nonat"
Environment="USER=freeswitch"
Environment="GROUP=freeswitch"
EnvironmentFile=-/etc/default/freeswitch
ExecStartPre=/bin/chown -R ${USER}:${GROUP} /var/lib/freeswitch /var/log/freeswitch /etc/freeswitch /usr/share/freeswitch /var/run/freeswitch
ExecStart=/usr/bin/freeswitch ${DAEMON_OPTS}
ExecStart=/usr/bin/freeswitch -u ${USER} -g ${GROUP} -ncwait ${DAEMON_OPTS}
TimeoutSec=45s
Restart=always
; exec
User=${USER}
Group=${GROUP}
;User=${USER}
;Group=${GROUP}
LimitCORE=infinity
LimitNOFILE=100000
LimitNPROC=60000