csb/colord/doinst.sh
Willy Sudiarto Raharjo 2f63dff6bf
colord: Add user creation in the doinst.sh as well.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
2016-11-30 18:41:49 +07:00

25 lines
726 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/dbus-1/system.d/org.freedesktop.ColorManager.conf.new
if [ -e usr/share/glib-2.0/schemas ]; then
if [ -x /usr/bin/glib-compile-schemas ]; then
/usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
fi
fi
if ! grep -q ^colord: /etc/group ; then
groupadd -g 303 colord
useradd -d /var/lib/colord -u 303 -g colord -s /bin/false colord
fi