diff options
author | 2016-11-27 08:55:48 +0000 | |
---|---|---|
committer | 2016-11-27 08:55:48 +0000 | |
commit | 758073a27bfa8e80f8b46a0af9e09d4900a326d4 (patch) | |
tree | 619338a7e5b53feeed0477564cf75a71f805d8b6 /usr.sbin/syspatch/syspatch.sh | |
parent | sync (diff) | |
download | wireguard-openbsd-758073a27bfa8e80f8b46a0af9e09d4900a326d4.tar.xz wireguard-openbsd-758073a27bfa8e80f8b46a0af9e09d4900a326d4.zip |
Explicitely set umask.
Diffstat (limited to 'usr.sbin/syspatch/syspatch.sh')
-rw-r--r-- | usr.sbin/syspatch/syspatch.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/syspatch/syspatch.sh b/usr.sbin/syspatch/syspatch.sh index 93c04041bc3..80083dbbb9e 100644 --- a/usr.sbin/syspatch/syspatch.sh +++ b/usr.sbin/syspatch/syspatch.sh @@ -1,6 +1,6 @@ #!/bin/ksh # -# $OpenBSD: syspatch.sh,v 1.61 2016/11/25 09:56:45 ajacoutot Exp $ +# $OpenBSD: syspatch.sh,v 1.62 2016/11/27 08:55:48 ajacoutot Exp $ # # Copyright (c) 2016 Antoine Jacoutot <ajacoutot@openbsd.org> # @@ -17,6 +17,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. set -e +umask 0022 sp_err() { |