mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
615ab66d18
Unlike most other Linux distributions archlinux installs its init scripts in /etc/rc.d insead of /etc/init.d. This commit provides an archlinux rc.d script for zfs and extends the build infrastructure to ensure it get's installed in the correct place. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #322
59 lines
940 B
Bash
59 lines
940 B
Bash
#!/bin/bash
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
case "$1" in
|
|
start)
|
|
stat_busy "Starting zfs"
|
|
|
|
if [ ! -c /dev/zfs ]; then
|
|
modprobe zfs
|
|
if [ $? -ne 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Import ZFS pools (via cache file)
|
|
if [ -f /etc/zfs/zpool.cache ]; then
|
|
/usr/sbin/zpool import -c /etc/zfs/zpool.cache -aN 2>/dev/null
|
|
if [ $? -ne 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Mount ZFS filesystems
|
|
/usr/sbin/zfs mount -a
|
|
if [ $? -ne 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
|
|
# Export ZFS flesystems
|
|
/usr/sbin/zfs share -a
|
|
if [ $? -ne 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
|
|
add_daemon zfs
|
|
stat_done
|
|
;;
|
|
stop)
|
|
stat_busy "Stopping zfs"
|
|
zfs umount -a
|
|
rm_daemon zfs
|
|
stat_done
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 {start|stop|restart}"
|
|
esac
|
|
|
|
exit 0
|