10 lines
125 B
Bash
10 lines
125 B
Bash
#!/bin/sh
|
|
|
|
. /lib/functions/service.sh
|
|
|
|
case "$ACTION" in
|
|
ifup)
|
|
/etc/init.d/gluon-respondd restart_if_running &
|
|
;;
|
|
esac
|