Update start up logic

This commit is contained in:
Teddysun 2014-05-05 11:03:05 +08:00
parent a177c17bff
commit bd18ee7c80

View File

@ -104,7 +104,7 @@ function config_shadowsocks(){
{ {
"server":"${IP}", "server":"${IP}",
"server_port":8989, "server_port":8989,
"local_address": "127.0.0.1", "local_address":"127.0.0.1",
"local_port":1080, "local_port":1080,
"password":"${shadowsockspwd}", "password":"${shadowsockspwd}",
"timeout":600, "timeout":600,
@ -154,7 +154,11 @@ function install(){
else else
echo "Shadowsocks-nodejs start failure!" echo "Shadowsocks-nodejs start failure!"
fi fi
# Add run on system start up
cat /etc/rc.d/rc.local | grep 'ssserver' > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "nohup ssserver -c /etc/config.json > /dev/null 2>&1 &" >> /etc/rc.d/rc.local echo "nohup ssserver -c /etc/config.json > /dev/null 2>&1 &" >> /etc/rc.d/rc.local
fi
else else
echo "" echo ""
echo "Shadowsocks-nodejs install failed! Please visit http://teddysun.com/355.html and contact." echo "Shadowsocks-nodejs install failed! Please visit http://teddysun.com/355.html and contact."