Remove backslash from awk command in stackrc

This change removes the backslash from the awk command in stackrc
file as it's currently broken:

source stackrc
awk: cmd. line:1: {FS=\"=\"}  /^OS_/ {print $1}
awk: cmd. line:1:     ^ backslash not last character on line
awk: cmd. line:1: {FS=\"=\"}  /^OS_/ {print $1}
awk: cmd. line:1:     ^ syntax error

Change-Id: Ib1856d60a97c3f7cf488d056be0e05fa9a3a7248
Closes-Bug: 1662203
(cherry picked from commit ef82a2f3cb)
This commit is contained in:
Marius Cornea 2017-02-06 14:26:54 +01:00 committed by Alex Schultz
parent a9b96d295e
commit b63d38ce3f
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# Clear any old environment that may conflict.
for key in $( set | awk '{FS=\"=\"} /^OS_/ {print $1}' ); do unset $key ; done
for key in $( set | awk '{FS="="} /^OS_/ {print $1}' ); do unset $key ; done
NOVA_VERSION=1.1
export NOVA_VERSION
OS_PASSWORD=$(sudo hiera admin_password)