chore: add Makefile and Debian packaging
This commit is contained in:
Executable
+19
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
case "$1" in
|
||||
purge)
|
||||
rm -rf /etc/ezcoo-usb-control
|
||||
if id -u ezcoo > /dev/null 2>&1; then
|
||||
deluser --quiet ezcoo || true
|
||||
fi
|
||||
if getent group ezcoo > /dev/null 2>&1; then
|
||||
delgroup --quiet ezcoo || true
|
||||
fi
|
||||
if [ -d /run/systemd/system ]; then
|
||||
systemctl daemon-reload
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
Reference in New Issue
Block a user