diff options
author | Zachary Bedell <[email protected]> | 2011-07-04 14:58:51 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-07-06 09:20:14 -0700 |
commit | e93ced48475b697734ae4fbc65c4e600b9752849 (patch) | |
tree | d7de7af9d11ece2d71b8e98c5525644fd580bcee /etc/init.d/zfs.lsb | |
parent | c8082367cfe9954f0e932fb1513b518d8b84022d (diff) |
Update zfs.gentoo/zfs.lsb init script
* Update paths to zpool/zfs tools,
* Log less for non-error conditions,
* Don't be fatal if umount fails at shutdown -- final init remount
will take care of it if /usr or / are in use
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'etc/init.d/zfs.lsb')
-rw-r--r-- | etc/init.d/zfs.lsb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/init.d/zfs.lsb b/etc/init.d/zfs.lsb index 6c0a743cc..c342a6b5c 100644 --- a/etc/init.d/zfs.lsb +++ b/etc/init.d/zfs.lsb @@ -32,8 +32,8 @@ RETVAL=0 LOCKFILE=/var/lock/zfs CACHEFILE=/etc/zfs/zpool.cache -ZPOOL=/usr/sbin/zpool -ZFS=/usr/sbin/zfs +ZPOOL=/sbin/zpool +ZFS=/sbin/zfs [ -x $ZPOOL ] || exit 1 [ -x $ZFS ] || exit 2 |