571d3738df
git-svn-id: https://shellinabox.googlecode.com/svn/trunk@195 0da03de8-d603-11dd-86c2-0f8696b7b6f9
10 lines
209 B
Bash
Executable file
10 lines
209 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = "purge" ] ; then
|
|
deluser --quiet --system --remove-home shellinabox > /dev/null || true
|
|
delgroup --quiet --system shellinabox > /dev/null || true
|
|
fi
|