Files
eudev/SNAP/usher
Jay Larson cb7e2b8d21 The following changes were made:
* Moved config to new CONFIG directory
  * Removed mkinitramfs and update-rc from usher
2018-07-30 19:47:17 -05:00

22 lines
268 B
Bash
Executable File

#!/bin/sh
set -e
case $1 in
preinst)
exit 0
;;
postinst)
if [ "$(stat -c %d/%i /)" = "$(stat -Lc %d/%i \
/proc/1/root 2>/dev/null)" ]; then
/etc/init.d/udevd restart
fi
;;
prerm)
exit 0
;;
postrm)
exit 0
;;
esac