summarylogtreecommitdiffstats
path: root/util-linux.install
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux.install')
-rw-r--r--util-linux.install11
1 files changed, 1 insertions, 10 deletions
diff --git a/util-linux.install b/util-linux.install
index 4c0bb107c08a..3fbfc2187d3a 100644
--- a/util-linux.install
+++ b/util-linux.install
@@ -1,21 +1,12 @@
post_install() {
# we don't want use systemd-tmpfiles here because
# the package dependency would create a circular dep.
- if [ ! -d run/uuidd ]; then
+ if [[ ! -d run/uuidd ]]; then
# refer to uid/gid by number to avoid dependency on filesystem
install -o 68 -g 68 -dm755 run/uuidd
fi
}
post_upgrade() {
- if [ "$(vercmp $2 2.21.2-4)" -lt 0 ]; then
- if [ -f /var/lib/hwclock/adjtime ]; then
- mv /var/lib/hwclock/adjtime /etc/adjtime
- fi
- if [ -d /var/lib/hwclock ]; then
- rmdir /var/lib/hwclock
- fi
- fi
-
post_install
}