commit | 29c31cb0315ceb5e481a5834c02fb49365257e01 | [log] [tgz] |
---|---|---|
author | David Bainbridge <dbainbri@ciena.com> | Mon Apr 06 09:45:50 2020 -0700 |
committer | David Bainbridge <dbainbri@ciena.com> | Mon Apr 06 09:45:50 2020 -0700 |
tree | f4ba91f38060ef60e935aeb6a6eef19aa57325e2 | |
parent | 696bc63da3fc4780df59de46dc53fe91b1801fc4 [diff] |
make sure to expand WITH_RADIUS
diff --git a/voltha b/voltha index b597a89..fb7b1b4 100755 --- a/voltha +++ b/voltha
@@ -283,6 +283,12 @@ if [ $(echo ":n:no:false:0:" | grep -ic ":$WITH_ETCD:") -eq 1 ]; then WITH_ETCD="no" fi +if [ $(echo ":y:yes:true:1:" | grep -ic ":$WITH_RADIUS:") -eq 1 ]; then + WITH_RADIUS="yes" +fi +if [ $(echo ":n:no:false:0:" | grep -ic ":$WITH_RADIUS:") -eq 1 ]; then + WITH_RADIUS="no" +fi # Check for prerequiste tools TOOLS="curl sed jq"