Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/etc/rc.d If zfs=YES, unconditioally do zfs mount/unmount -a.



details:   https://anonhg.NetBSD.org/src/rev/690e10d9fb97
branches:  trunk
changeset: 745140:690e10d9fb97
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sun Feb 23 08:53:25 2020 +0000

description:
If zfs=YES, unconditioally do zfs mount/unmount -a.

If you set zfs=YES, presumably you positively want the automatic rc.d
actions, so if there's no /sbin/zfs or if zfs can't find pools with
/etc/zfs/zpool.cache, presumably you would like feedback about that
in rc.log.

diffstat:

 etc/rc.d/mountall |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 803b71b372f2 -r 690e10d9fb97 etc/rc.d/mountall
--- a/etc/rc.d/mountall Sun Feb 23 08:53:14 2020 +0000
+++ b/etc/rc.d/mountall Sun Feb 23 08:53:25 2020 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: mountall,v 1.11 2019/09/15 19:38:09 brad Exp $
+# $NetBSD: mountall,v 1.12 2020/02/23 08:53:25 riastradh Exp $
 #
 
 # REQUIRE: mountcritremote named ypbind
@@ -17,7 +17,7 @@
        echo 'Mounting all file systems...'
        # Mount file systems noted in fstab.
        mount -a
-       if checkyesno zfs && [ -x /sbin/zfs -a -f /etc/zfs/zpool.cache ]; then
+       if checkyesno zfs; then
                # Mount ZFS file systems.
                zfs mount -a
        fi
@@ -26,7 +26,7 @@
 mountall_stop()
 {
        echo 'Unmounting all file systems...'
-       if checkyesno zfs && [ -x /sbin/zfs -a -f /etc/zfs/zpool.cache ]; then
+       if checkyesno zfs; then
                # Unmount ZFS file systems.
                zfs unmount -a
        fi



Home | Main Index | Thread Index | Old Index