Просмотр исходного кода

Update source-systemd.sh (#115)

correct freeswitch.pid path and freeswitch.service path
https://github.com/fusionpbx/fusionpbx/issues/2812
Len 8 лет назад
Родитель
Сommit
0760aa8522
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      debian/resources/switch/source-systemd.sh

+ 5 - 1
debian/resources/switch/source-systemd.sh

@@ -1,9 +1,13 @@
-cp "$(dirname $0)/source/freeswitch.service.source" /lib/systemd/system/freeswitch.service
+#cp "$(dirname $0)/source/freeswitch.service.source" /lib/systemd/system/freeswitch.service
+cp "$(dirname $0)/source/freeswitch.service.source" /etc/systemd/system/freeswitch.service
 cp "$(dirname $0)/source/etc.default.freeswitch.source" /etc/default/freeswitch
 cp "$(dirname $0)/source/etc.default.freeswitch.source" /etc/default/freeswitch
+sed "s@PIDFile=/run/freeswitch/freeswitch.pid@PIDFile=/usr/local/freeswitch/run/freeswitch.pid@g" -i /etc/systemd/system/freeswitch.service
+
 if [ -e /proc/user_beancounters ]
 if [ -e /proc/user_beancounters ]
 then
 then
     #Disable CPU Scheduler for OpenVZ, not supported on OpenVZ."
     #Disable CPU Scheduler for OpenVZ, not supported on OpenVZ."
     sed -i -e "s/CPUSchedulingPolicy=rr/;CPUSchedulingPolicy=rr/g" /lib/systemd/system/freeswitch.service
     sed -i -e "s/CPUSchedulingPolicy=rr/;CPUSchedulingPolicy=rr/g" /lib/systemd/system/freeswitch.service
+   
 fi
 fi
 systemctl enable freeswitch
 systemctl enable freeswitch
 systemctl unmask freeswitch.service
 systemctl unmask freeswitch.service