10 lines
90 B
Bash
10 lines
90 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "purge" ]
|
|
then
|
|
userdel libreant || true
|
|
fi
|
|
|
|
#DEBHELPER#
|