- Adjust path in pkg-install to PREFIX PR: 197023 Submitted by: vermaden@interia.pl (maintainer)
15 lines
215 B
Bash
15 lines
215 B
Bash
#!/bin/sh
|
|
|
|
case ${2} in
|
|
(POST-INSTALL)
|
|
service devd restart
|
|
echo
|
|
echo
|
|
echo "Check %%PREFIX%%/bin/automount --help for available options."
|
|
echo
|
|
echo
|
|
;;
|
|
(PRE-INSTALL)
|
|
:
|
|
;;
|
|
esac
|