summaryrefslogtreecommitdiffabout
path: root/debian/iii.postinst
Unidiff
Diffstat (limited to 'debian/iii.postinst') (more/less context) (ignore whitespace changes)
-rwxr-xr-xdebian/iii.postinst18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/iii.postinst b/debian/iii.postinst
deleted file mode 100755
index f52bf84..0000000
--- a/debian/iii.postinst
+++ b/dev/null
@@ -1,18 +0,0 @@
1#!/bin/sh
2set -e
3UG=eyefi
4P=iii
5H=/var/lib/$P
6
7if [ "$1" = configure ] ; then
8 getent group $UG >/dev/null 2>&1 || addgroup --system $UG
9 getent passwd $UG >/dev/null 2>&1 || adduser --system --home $H \
10 --no-create-home --disabled-password --ingroup $UG $UG
11 if ! test -d $H ; then
12 mkdir -p $H
13 chown $UG:$UG $H
14 chmod 2770 $H
15 fi
16fi
17
18#DEBHELPER#