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