author | Michael Krelin <hacker@klever.net> | 2012-01-21 13:12:08 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2012-01-21 13:12:08 (UTC) |
commit | 225ebc36b2eadcf04c7e41ff037b62fd16144cc7 (patch) (unidiff) | |
tree | 42a1b9348fe75b63bc8fb36b046a9e200d7fce87 /debian/iii.postinst | |
parent | d39b8f94fece83768d21bb7c28dcf305dc048938 (diff) | |
download | iii-225ebc36b2eadcf04c7e41ff037b62fd16144cc7.zip iii-225ebc36b2eadcf04c7e41ff037b62fd16144cc7.tar.gz iii-225ebc36b2eadcf04c7e41ff037b62fd16144cc7.tar.bz2 |
removed debian packaging stuff from the master branch
Yes, I still don't know what the most sane way of maintaining packaging
Signed-off-by: Michael Krelin <hacker@klever.net>
-rwxr-xr-x | debian/iii.postinst | 18 |
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 | ||
2 | set -e | ||
3 | UG=eyefi | ||
4 | P=iii | ||
5 | H=/var/lib/$P | ||
6 | |||
7 | if [ "$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 | ||
16 | fi | ||
17 | |||
18 | #DEBHELPER# | ||