Skip to content

Instantly share code, notes, and snippets.

@metcalfc
Created June 30, 2020 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metcalfc/9081b57520b758e5c339ab6067f86f3e to your computer and use it in GitHub Desktop.
Save metcalfc/9081b57520b758e5c339ab6067f86f3e to your computer and use it in GitHub Desktop.
powershell.exe "& 'C:\Windows\System32\bash.exe' -c 'sudo /etc/init.d/ssh start'"
powershell.exe "& 'C:\Windows\System32\bash.exe' -c 'sudo /home/metcalfc/bin/sudppipe.sh start'"
timeout 5
#!/bin/sh
### BEGIN INIT INFO
# Provides: <NAME>
# Required-Start: $local_fs $network $named $time $syslog
# Required-Stop: $local_fs $network $named $time $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: <DESCRIPTION>
### END INIT INFO
IP=$(hostname -I)
SCRIPT="${HOME}/bin/sudppipe.exe ${IP} 60000 60000"
RUNAS=${USER}
PIDFILE=/var/run/sudppipe.pid
LOGFILE=/var/log/sudppipe.log
start() {
if [ -f "${PIPFILE}" ] && kill -0 $(cat "${PIDFILE}"); then
echo 'Service already running' >&2
return 1
fi
echo 'Starting service…' >&2
local CMD="$SCRIPT &> \"$LOGFILE\" & echo \$!"
su -c "$CMD" $RUNAS > "$PIDFILE"
echo 'Service started' >&2
}
stop() {
if [ -f "${PIPFILE}" ] && kill -0 $(cat "${PIDFILE}"); then
echo 'Service not running' >&2
return 1
fi
echo 'Stopping service…' >&2
kill -15 $(cat "$PIDFILE") && rm -f "$PIDFILE"
echo 'Service stopped' >&2
}
status() {
if [ -f "${PIPFILE}" ] && kill -0 $(cat "${PIDFILE}"); then
echo 'Service running' >&2
return
fi
echo 'Service stopped' >&2
}
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
retart)
stop
start
;;
*)
echo "Usage: $0 {start|stop|restart|uninstall}"
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment