diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2014-04-26 13:39:23 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2014-05-06 12:00:46 +0200 |
commit | b4f7bf8ca067542b48ed4099c9feaf9f62f89a62 (patch) | |
tree | 810a73465e95922d1109daf0d179ed60c723464b /src/lib/connections/dummy | |
parent | e9c36cc1ef0e17d80d279a06f15833e8da13ffb2 (diff) | |
download | netctl-b4f7bf8ca067542b48ed4099c9feaf9f62f89a62.tar.gz netctl-b4f7bf8ca067542b48ed4099c9feaf9f62f89a62.tar.xz |
Fix default interface bindings (fourth time)
The following changes introduced in Bash 4.3 necessitate this commit:
- Setting the array attribute no longer initializes an array.
- Empty-but-set arrays no longer pass [[ -v ]].
Previous attempts:
feb669f4b2a15e6ea1d84be336f12be4650f9d2d
711c46457ae9fef52c7c529d89c67d0d526f73ef
e8210827fd59e4539a70af55cb452b211633fedd
Diffstat (limited to 'src/lib/connections/dummy')
-rw-r--r-- | src/lib/connections/dummy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/connections/dummy b/src/lib/connections/dummy index 5a12d1e..8726d86 100644 --- a/src/lib/connections/dummy +++ b/src/lib/connections/dummy @@ -2,7 +2,8 @@ . "$SUBR_DIR/ip" -declare -ag BindsToInterfaces +# Make sure BindsToInterfaces is set +BindsToInterfaces=("${BindsToInterfaces[@]}") dummy_up() { if is_interface "$Interface"; then |