summaryrefslogtreecommitdiffstats
path: root/usr.sbin/syspatch
diff options
context:
space:
mode:
authorajacoutot <ajacoutot@openbsd.org>2016-12-31 15:52:36 +0000
committerajacoutot <ajacoutot@openbsd.org>2016-12-31 15:52:36 +0000
commitdf156704e997b2250c0b951f3ffd9a4cc3745ce2 (patch)
tree20ccb379581af289dda5cff49a60de8c4cdce98a /usr.sbin/syspatch
parentsync (diff)
downloadwireguard-openbsd-df156704e997b2250c0b951f3ffd9a4cc3745ce2.tar.xz
wireguard-openbsd-df156704e997b2250c0b951f3ffd9a4cc3745ce2.zip
The syspatch test repo can now be accessed over https.
Diffstat (limited to 'usr.sbin/syspatch')
-rw-r--r--usr.sbin/syspatch/syspatch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/syspatch/syspatch.sh b/usr.sbin/syspatch/syspatch.sh
index a65ed527529..7b87ba733f9 100644
--- a/usr.sbin/syspatch/syspatch.sh
+++ b/usr.sbin/syspatch/syspatch.sh
@@ -1,6 +1,6 @@
#!/bin/ksh
#
-# $OpenBSD: syspatch.sh,v 1.78 2016/12/08 09:47:37 ajacoutot Exp $
+# $OpenBSD: syspatch.sh,v 1.79 2016/12/31 15:52:36 ajacoutot Exp $
#
# Copyright (c) 2016 Antoine Jacoutot <ajacoutot@openbsd.org>
#
@@ -279,7 +279,7 @@ _OSrev=${_KERNV[0]%\.*}${_KERNV[0]#*\.}
_PDIR="/var/syspatch"
_TMP=$(mktemp -d -p /tmp syspatch.XXXXXXXXXX)
# XXX to be discussed
-_URL=http://syspatch.openbsd.org/pub/OpenBSD/${_KERNV[0]}/syspatch/$(machine)
+_URL=https://syspatch.openbsd.org/pub/OpenBSD/${_KERNV[0]}/syspatch/$(machine)
readonly _BSDMP _FETCH _OSrev _PDIR _REL _TMP _URL
trap 'set +e; rm -rf "${_TMP}"' EXIT