summarylogtreecommitdiffstats
path: root/util-linux.install
blob: 3fbfc2187d3aead8ef04a0a83601ea188c5d5993 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
    # refer to uid/gid by number to avoid dependency on filesystem
    install -o 68 -g 68 -dm755 run/uuidd
  fi
}

post_upgrade() {
  post_install
}