aab20f5ed0
first release of ShellInABox that supports an AJAX interface instead of the original Java applet. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@2 0da03de8-d603-11dd-86c2-0f8696b7b6f9
15 lines
365 B
Bash
Executable file
15 lines
365 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Automatically added by dh_installinit
|
|
if [ "$1" = "purge" ] ; then
|
|
update-rc.d shellinabox remove >/dev/null || exit $?
|
|
fi
|
|
# End automatically added section
|
|
|
|
|
|
if [ "$1" = "purge" ] ; then
|
|
deluser --quiet --system --remove-home shellinabox > /dev/null || true
|
|
delgroup --quiet --system shellinabox > /dev/null || true
|
|
fi
|