diff options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/syspatch/syspatch.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/syspatch/syspatch.sh b/usr.sbin/syspatch/syspatch.sh index d4179f64943..9aa83e9c5a4 100644 --- a/usr.sbin/syspatch/syspatch.sh +++ b/usr.sbin/syspatch/syspatch.sh @@ -1,6 +1,6 @@ #!/bin/ksh # -# $OpenBSD: syspatch.sh,v 1.44 2016/11/10 10:27:31 ajacoutot Exp $ +# $OpenBSD: syspatch.sh,v 1.45 2016/11/10 10:39:09 ajacoutot Exp $ # # Copyright (c) 2016 Antoine Jacoutot <ajacoutot@openbsd.org> # @@ -253,7 +253,8 @@ sp_cleanup() # remove rollback kernel if all kernel syspatches have been reverted cmp -s /bsd /bsd.rollback${_RELINT} && rm /bsd.rollback${_RELINT} - # non-fatal: the syspatch|rollback tarball should have correct perms + # in case a patch added a new directory (install -D); + # non-fatal in case some mount points are read-only for _m in 4.4BSD BSD.x11; do mtree -qdef /etc/mtree/${_m}.dist -p / -U >/dev/null || true done |