Skip to content

Instantly share code, notes, and snippets.

@webleon
Created February 10, 2016 12:29
Show Gist options
  • Save webleon/9846185f35a626e200d2 to your computer and use it in GitHub Desktop.
Save webleon/9846185f35a626e200d2 to your computer and use it in GitHub Desktop.
/etc/rc.local ss开机自启
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exec 2> /tmp/rc.local.log # send stderr from rc.local to a log file
exec 1>&2 # send stdout to the same log file
set -x
/usr/local/bin/ssserver -c /etc/shadowsocks.json -d start
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment