diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2019-11-27 17:09:13 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2019-11-27 17:09:13 +0000 |
commit | ef8ac29ba3d237a19175ad7252d709c9a74bc051 (patch) | |
tree | b0730c77a5711b1dc33eb1195ded6d2306cd0a14 /etc | |
parent | eea03b2cf9ebda5eab296063580192f3601c9f64 (diff) |
Nuke http captive portal detection; something better is coming.
OK otto
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 4 | ||||
-rw-r--r-- | etc/examples/unwind.conf | 35 |
2 files changed, 2 insertions, 37 deletions
diff --git a/etc/Makefile b/etc/Makefile index b4c3456af86..bd42a3cc99d 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.471 2019/08/12 09:49:21 claudio Exp $ +# $OpenBSD: Makefile,v 1.472 2019/11/27 17:09:12 florian Exp $ .include <bsd.own.mk> @@ -48,7 +48,7 @@ MUTABLE=changelist daily etc.${MACHINE}/disktab \ EXAMPLES=acme-client.conf chio.conf dhclient.conf dhcpd.conf exports \ httpd.conf ifstated.conf inetd.conf man.conf mixerctl.conf \ mrouted.conf ntpd.conf printcap rad.conf rbootd.conf \ - remote unwind.conf sensorsd.conf wsconsctl.conf + remote sensorsd.conf wsconsctl.conf # -rw------- EXAMPLES_600=bgpd.conf doas.conf dvmrpd.conf eigrpd.conf hostapd.conf \ diff --git a/etc/examples/unwind.conf b/etc/examples/unwind.conf deleted file mode 100644 index ea60cf9b6ff..00000000000 --- a/etc/examples/unwind.conf +++ /dev/null @@ -1,35 +0,0 @@ -# $OpenBSD: unwind.conf,v 1.1 2019/02/05 16:23:58 florian Exp $ -# -# unwind(8) works without a configuration file in most cases. -# See unwind.conf(5) for configuration options. - -# Non-exhaustive list of connectivity test providers. -# To only occasionally run a captive portal check manually from unwindctl(8) -# add "auto no" to the block. -#captive portal { -# url "http://captive.apple.com/" -# expected response "<HTML><HEAD><TITLE>Success</TITLE></HEAD><BODY>Success</BODY></HTML>\n" -# # auto no # uncomment to run manually from unwindctl(8) -#} -#captive portal { -# url "http://clients3.google.com/generate_204" -# expected status 204 -# # auto no # uncomment to run manually from unwindctl(8) -#} -#captive portal { -# url "http://detectportal.firefox.com/" -# expected response "success\n" -# # auto no # uncomment to run manually from unwindctl(8) -#} - -# Running a connectivity test provider with httpd(8). -# httpd.conf -#server "c.YOUR-DOMAIN.com" { -# listen on * port 80 -# location "*" { block return 204 } -#} -# unwind.conf -#captive portal { -# url "http://c.YOUR-DOMAIN.com/" -# expected status 204 -#} |