aboutsummaryrefslogtreecommitdiffstats
path: root/debian/deluged.postinst
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2023-08-08 18:49:04 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2025-12-05 19:38:28 -0500
commitc3fbbf363fbf800d9b5d24f01fd5986668a06bfe (patch)
tree0729fa4cb6e94b2b43ae87ec667637c79fb91e3c /debian/deluged.postinst
parentc3f649adaf74cc0575783f37d639fc4bcb602c47 (diff)
d/deluged.(dirs,logrotate,postinst,postrm): Drop.
Diffstat (limited to 'debian/deluged.postinst')
-rwxr-xr-xdebian/deluged.postinst45
1 files changed, 0 insertions, 45 deletions
diff --git a/debian/deluged.postinst b/debian/deluged.postinst
deleted file mode 100755
index ed21cff..0000000
--- a/debian/deluged.postinst
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-
-set -e
-
-DELUGE_USER="debian-deluged"
-DELUGE_GROUP="debian-deluged"
-
-Add_override ()
-{
- if ! dpkg-statoverride --list ${4} > /dev/null 2>&1
- then
- dpkg-statoverride --update --add ${@}
- fi
-}
-
-case "${1}" in
- configure)
- if ! getent group ${DELUGE_GROUP} > /dev/null 2>&1
- then
- groupadd --system ${DELUGE_GROUP}
- fi
-
- if ! getent passwd ${DELUGE_USER} > /dev/null 2>&1
- then
- useradd --system -g ${DELUGE_GROUP} --home-dir /var/lib/deluged ${DELUGE_USER}
- fi
-
- Add_override ${DELUGE_USER} adm 2750 /var/log/deluged
- Add_override ${DELUGE_USER} ${DELUGE_GROUP} 0750 /var/lib/deluged
- Add_override ${DELUGE_USER} ${DELUGE_GROUP} 0750 /var/lib/deluged/config
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
-
- ;;
-
- *)
- echo "postinst called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0