Commit b6146a18 by tingweiwang

Update start.sh

1 parent df3cdcae
Showing with 7 additions and 4 deletions
......@@ -84,27 +84,30 @@ kpl_launcher
echo "开始执行seetaas代码打包"
build_seetaas
echo "判断是否收集seetaas-deploy脚本"
if [[ $seetaas_deploy_archive == "true" ]];then
seetaas_deploy
else
echo "跳过seetaas-deploy任务"
fi
echo "判断是否收集configmap-kpl"
if [[ $configmap_kpl_archive == "true" ]];then
configmap_kpl_archive
else
echo "跳过收集configmap-kpl任务"
fi
echo "判断是否收集private images"
if [[ $private_images_archive == "true" ]];then
private_img
else
echo "跳过收集private images任务"
fi
echo "判断是否收集private debs"
if [[ $private_apt_debs == "true" ]];then
private_debs
else
echo "跳过收集private debs"
\ No newline at end of file
echo "跳过收集private debs"
fi
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!