aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/appc
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/vagrant-onap/lib/appc')
-rwxr-xr-xbootstrap/vagrant-onap/lib/appc8
1 files changed, 6 insertions, 2 deletions
diff --git a/bootstrap/vagrant-onap/lib/appc b/bootstrap/vagrant-onap/lib/appc
index 33980aeea..5e3858f16 100755
--- a/bootstrap/vagrant-onap/lib/appc
+++ b/bootstrap/vagrant-onap/lib/appc
@@ -52,6 +52,10 @@ function init_appc {
fi
fi
- get_appc_images
- install_appc
+ if [[ "$skip_get_images" == "False" ]]; then
+ get_appc_images
+ if [[ "$skip_install" == "False" ]]; then
+ install_appc
+ fi
+ fi
}