blob: e61d07aa752e81e903d737adf959a3b7f239d849 (
plain)
1
2
3
4
5
6
7
8
9
|
if which pycompile >/dev/null 2>&1; then
pycompile -p torouterui
echo "Not starting just now; do so with '/etc/init.d/torouterui start' as root"
fi
if [ -x "/etc/init.d/torouterui" ]; then
update-rc.d torouterui defaults >/dev/null
fi
|