diff options
author | 2016-12-06 10:29:04 +0000 | |
---|---|---|
committer | 2016-12-06 10:29:04 +0000 | |
commit | f303df63820fb5c1d8aa8a736e4076a0d6c0356f (patch) | |
tree | 94b521f16b9bba0e525c48e76cedca0f64f92e68 | |
parent | make IdentityFile successfully load and use certificates that have no (diff) | |
download | wireguard-openbsd-f303df63820fb5c1d8aa8a736e4076a0d6c0356f.tar.xz wireguard-openbsd-f303df63820fb5c1d8aa8a736e4076a0d6c0356f.zip |
Tweak comment.
-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 e4313b92fb5..e2b341ff038 100644 --- a/usr.sbin/syspatch/syspatch.sh +++ b/usr.sbin/syspatch/syspatch.sh @@ -1,6 +1,6 @@ #!/bin/ksh # -# $OpenBSD: syspatch.sh,v 1.72 2016/12/05 16:11:17 ajacoutot Exp $ +# $OpenBSD: syspatch.sh,v 1.73 2016/12/06 10:29:04 ajacoutot Exp $ # # Copyright (c) 2016 Antoine Jacoutot <ajacoutot@openbsd.org> # @@ -95,6 +95,7 @@ checkfs() create_rollback() { + # XXX annotate new files so we can remove them if we rollback? local _file _patch=$1 _rbfiles _ret=0 [[ -n ${_patch} ]] shift @@ -121,7 +122,7 @@ create_rollback() _ret=$? fi - # XXX missing archive (empty _rbfiles list) probably means a missing set + # missing archive (empty _rbfiles list) [[ -f ${_PDIR}/${_patch}/rollback.tgz ]] || _ret=$? if ((_ret != 0)); then |