summaryrefslogtreecommitdiffstats
path: root/debian/apt.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 06:14:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 06:14:41 +0000
commite0c5d5bce70177b20afa2deee4c62e368a8b9c43 (patch)
treede36eff10a26ee736e19b557f531d03847487856 /debian/apt.postinst
parentAdding upstream version 2.2.4. (diff)
downloadapt-e0c5d5bce70177b20afa2deee4c62e368a8b9c43.tar.xz
apt-e0c5d5bce70177b20afa2deee4c62e368a8b9c43.zip
Adding debian version 2.2.4.debian/2.2.4debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/apt.postinst')
-rwxr-xr-xdebian/apt.postinst10
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/apt.postinst b/debian/apt.postinst
new file mode 100755
index 0000000..837b46b
--- /dev/null
+++ b/debian/apt.postinst
@@ -0,0 +1,10 @@
+#! /bin/sh
+set -e
+
+if [ "$1" = 'configure' ]; then
+ # add unprivileged user for the apt methods
+ adduser --force-badname --system --home /nonexistent \
+ --no-create-home --quiet _apt || true
+fi
+
+#DEBHELPER#