commit | 15f6f23ac3a2be3398fdf1d9003ce41adc454e90 | [log] [tgz] |
---|---|---|
author | David Bainbridge <dbainbri@ciena.com> | Mon Mar 30 09:15:43 2020 -0700 |
committer | David Bainbridge <dbainbri@ciena.com> | Mon Mar 30 09:15:43 2020 -0700 |
tree | 5c1663c5c4b5785618052cc14ca3efd75ea48a18 | |
parent | 3bba5a1c99c78021fef202eb7548f4b647db61ff [diff] |
expand yes and no for CONFIG_SADIS
diff --git a/voltha b/voltha index 84abd2a..1717510 100755 --- a/voltha +++ b/voltha
@@ -256,6 +256,14 @@ fi done +# Special case for CONFIG_SADIS +if [ $(echo ":y:yes:true:1:" | grep -ic ":$CONFIG_SADIS:") -eq 1 ]; then + CONFIG_SADIS="yes" +fi +if [ $(echo ":n:no:false:0:" | grep -ic ":$CONFIG_SADIS:") -eq 1 ]; then + CONFIG_SADIS="no" +fi + # Check for prerequiste tools TOOLS="curl sed jq" if [ $DEPLOY_K8S == "yes" ]; then