Moved to slp format

This commit is contained in:
2020-08-23 20:58:45 -05:00
parent ef86e5391e
commit ea767638d0
5 changed files with 11 additions and 10 deletions

21
SL/usher Executable file
View File

@@ -0,0 +1,21 @@
#!/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