diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-10-14 13:59:35 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-10-15 00:47:04 +0200 |
commit | 4d53c6a4bcef9ce54d77f282cf6fd3b1d14a355f (patch) | |
tree | c4dae6ccc56a47bd6cc2f88e7b27e25d10788168 | |
parent | fa28358658487727fbb766361cf134dba6e73e36 (diff) | |
download | netctl-4d53c6a4bcef9ce54d77f282cf6fd3b1d14a355f.tar.gz netctl-4d53c6a4bcef9ce54d77f282cf6fd3b1d14a355f.tar.xz |
Shed some history
Prepare for the 3.0 release.
-rw-r--r-- | AUTHORS | 2 | ||||
-rwxr-xr-x | scripts/netcfg | 2 | ||||
-rwxr-xr-x | scripts/netcfg-wpa_actiond | 6 |
3 files changed, 2 insertions, 8 deletions
@@ -1,8 +1,8 @@ James Rayner <james@archlinux.org> Jim Pryor <profjim@jimpryor.net> -Kyle Fuller <inbox@kylefuller.co.uk> Andrea Scarpino <andrea@archlinux.org> Thomas Bächler <thomas@archlinux.org> Rémy Oudompheng <remy@archlinux.org> Jouke Witteveen <j.witteveen@gmail.com> +and many others (try: git shortlog -s) diff --git a/scripts/netcfg b/scripts/netcfg index dc5ebde..f1d79e8 100755 --- a/scripts/netcfg +++ b/scripts/netcfg @@ -67,7 +67,7 @@ case "$1" in profile_up "$2";; -d|down) profile_down "$2";; - -D|iface-down|-i) # -i is there for backward compatibility (pre 2.7) + -D|iface-down) interface_down "$2";; -a|all-down) all_down;; diff --git a/scripts/netcfg-wpa_actiond b/scripts/netcfg-wpa_actiond index 9e2264b..c6aaf67 100755 --- a/scripts/netcfg-wpa_actiond +++ b/scripts/netcfg-wpa_actiond @@ -52,12 +52,6 @@ fi WPA_CONF="$(make_wpa_config_file "$interface")" if [[ -n "${AUTO_PROFILES}" ]]; then - # At some point, this can be removed. - if [[ ${#AUTO_PROFILES[@]} -eq 1 ]]; then - report_err "Please convert AUTO_PROFILES to an array in /etc/conf.d/netcfg." - AUTO_PROFILES=($AUTO_PROFILES) - fi - for prof in "${AUTO_PROFILES[@]}"; do echo "$prof"; done else list_profiles |