mirror of
https://github.com/SphereServer/Source-X
synced 2026-08-13 10:23:05 -04:00
22 lines
312 B
Bash
22 lines
312 B
Bash
#!/bin/sh
|
|
#
|
|
# Post-removal script for Sphereserver.
|
|
#
|
|
|
|
# Parameters
|
|
NAME="sphereserver"
|
|
|
|
# Ensure that the scripts abort in case of any errors
|
|
set -e
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
# Remove user.
|
|
userdel $NAME
|
|
|
|
# Remove files.
|
|
rm -rf /opt/$NAME
|
|
rm -rf /etc/$NAME
|
|
rm -rf /var/log/$NAME
|
|
fi
|
|
|
|
#DEBHELPER#
|