diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-06-18 15:17:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-06-18 15:17:39 +0000 |
commit | 9a16f2f5c7fc937920fe346ea0d40ba5eaa58ba0 (patch) | |
tree | 93d8ae74b0412a7135cfe8fba92fca2c4badc107 /distrib/miniroot/install.sub | |
parent | 1aa6d5025b5143fb48450d25f8cfb330559479fc (diff) |
accept 'a' as shortcut for 'autoconf'; ok op afresh1 kn
Diffstat (limited to 'distrib/miniroot/install.sub')
-rw-r--r-- | distrib/miniroot/install.sub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index fe1e978f065..96ce637c7c4 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.1249 2023/06/06 09:35:44 kn Exp $ +# $OpenBSD: install.sub,v 1.1250 2023/06/18 15:17:38 deraadt Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -1103,7 +1103,7 @@ v4_config() { case $resp in none) return ;; - autoconf|dhcp) + a|autoconf|dhcp) dhcp_request $_if echo "inet autoconf" >>$_hn return @@ -1220,7 +1220,7 @@ v6_config() { case $resp in none) return ;; - autoconf) + a|autoconf) ifconfig $_if inet6 autoconf up echo "inet6 autoconf" >>$_hn return |