summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2016-11-10 10:39:10 +0000
committerAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2016-11-10 10:39:10 +0000
commiteb40ba50b70e5e0a36c7653604eb41fcd7406fe8 (patch)
treee05633af85cb8c15d74e0620aac64958edd354a0 /usr.sbin
parentbecfa197175d61fc065cb5a82617cbe2f5616834 (diff)
Extend mtree(8) comment.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/syspatch/syspatch.sh5
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