diff options
| author | Simon Rettberg | 2013-05-22 17:02:48 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2013-05-22 17:02:48 +0200 |
| commit | b1d0340705468550c022b53f75184e7158bca97c (patch) | |
| tree | fcec2d10f2905f05edaddfa0635a4304dea01437 | |
| parent | (WiP) Setup Script for OpenSLX-NG-Servers (diff) | |
| download | tm-scripts-b1d0340705468550c022b53f75184e7158bca97c.tar.gz tm-scripts-b1d0340705468550c022b53f75184e7158bca97c.tar.xz tm-scripts-b1d0340705468550c022b53f75184e7158bca97c.zip | |
[setup_target] Fix for loop that unsets module-variables
| -rwxr-xr-x | remote/setup_target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote/setup_target b/remote/setup_target index 10d6b575..617c409e 100755 --- a/remote/setup_target +++ b/remote/setup_target @@ -20,7 +20,7 @@ initial_checks () { read_config () { # unset previous variables from other config files - for VARNAME in "${!REQUIRED_*}"; do + for VARNAME in ${!REQUIRED_*}; do unset $VARNAME done |
