diff options
author | 2000-12-10 02:40:39 +0000 | |
---|---|---|
committer | 2000-12-10 02:40:39 +0000 | |
commit | 770c15b1beb47d5ef51de2bf1507d61a95132085 (patch) | |
tree | b873ad2b1fffb249287905160d9be44b146dcb0e | |
parent | oops, document that CVS_RSH defaults to "ssh" now (diff) | |
download | wireguard-openbsd-770c15b1beb47d5ef51de2bf1507d61a95132085.tar.xz wireguard-openbsd-770c15b1beb47d5ef51de2bf1507d61a95132085.zip |
ignore filesystems marked "xx"; os@atina.ar
-rw-r--r-- | distrib/miniroot/install.sub | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index bb7730d6ef4..865726f95e5 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.159 2000/11/20 13:11:16 deraadt Exp $ +# $OpenBSD: install.sub,v 1.160 2000/12/10 02:40:39 deraadt Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997,1998 Todd Miller, Theo de Raadt @@ -1986,6 +1986,11 @@ _fstab_shadow=$2 \#*) continue;; *) ;; esac + # ...and filesystems with mounting options ``xx'' + case "$_rest" in + xx*) continue;; + *) ;; + esac # and some filesystem types (like there are swap,kernfs,...) case "$_fstype" in ffs|ufs|nfs) ;; |