diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-01-23 01:26:55 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-01-23 01:26:55 +0300 |
commit | eb23c57d198da848414872bf3e523d6648615a5d (patch) | |
tree | a27e12ae18b047f398b4506a756dbe68c8d678a3 /debian/uuid-runtime.postinst | |
parent | 8bf1e9184ed607aca8afaf50f0972c5a5a9a32db (diff) | |
download | e2fsprogs-master.tar.gz |
Diffstat (limited to 'debian/uuid-runtime.postinst')
-rw-r--r-- | debian/uuid-runtime.postinst | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/uuid-runtime.postinst b/debian/uuid-runtime.postinst deleted file mode 100644 index 3c1adb63..00000000 --- a/debian/uuid-runtime.postinst +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -set -e -if ! getent group | grep -q libuuid; then -groupadd -f -K GID_MIN=1 -K GID_MAX=999 libuuid -fi -if ! getent passwd | grep -q libuuid; then - useradd -d /var/lib/libuuid -K UID_MIN=1 -K UID_MAX=499 -g libuuid libuuid -fi -chown libuuid:libuuid /usr/sbin/uuidd -chmod 6755 /usr/sbin/uuidd - -#DEBHELPER# - -exit 0 |