diff options
-rw-r--r-- | config/freeradius.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/freeradius.inc b/config/freeradius.inc index 6e81f0a0..a50f6c6d 100644 --- a/config/freeradius.inc +++ b/config/freeradius.inc @@ -26,8 +26,8 @@ function freeradius_install_command() { $rcfile = array(); $rcfile['file'] = 'radiusd.sh'; - $rcfile['start'] = 'radiusd -s &'; - $rcfile['stop'] = 'killall radiusd'; + $rcfile['start'] = 'killall -9 radiusd ; sleep 5 && radiusd -s &';; + $rcfile['stop'] = 'killall -9 radiusd ; sleep 5'; conf_mount_rw(); write_rcfile($rcfile); conf_mount_ro(); |