Created
October 27, 2012 02:44
-
-
Save thokra/3962755 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: tightvncserver | |
# Required-Start: $local_fs | |
# Required-Stop: $local_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start/stop tightvncserver | |
### END INIT INFO | |
# More details see: | |
# http://www.penguintutor.com/linux/tightvnc | |
### Customize this entry | |
# Set the USER variable to the name of the user to start tightvncserver under | |
export USER='pi' | |
### End customization required | |
eval cd ~$USER | |
case "$1" in | |
start) | |
su $USER -c '/usr/bin/tightvncserver :1' | |
echo "Starting TightVNC server for $USER " | |
;; | |
stop) | |
pkill Xtightvnc | |
echo "Tightvncserver stopped" | |
;; | |
*) | |
echo "Usage: /etc/init.d/tightvncserver {start|stop}" | |
exit 1 | |
;; | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment