X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=tools%2F2genesis.sh;h=3c2888bef53b9b2cef099b75e7a7639b9defe2c1;hb=042615bf6de5c8d0d396468dcf2b11b3df911e95;hp=2d63bf40003150c6c5ec2c2a26f886fbc7ba25b2;hpb=c0546d721c338cca646dbad6c6013f75ba7c868b;p=yaml_builds.git diff --git a/tools/2genesis.sh b/tools/2genesis.sh index 2d63bf4..3c2888b 100755 --- a/tools/2genesis.sh +++ b/tools/2genesis.sh @@ -44,11 +44,19 @@ fi source $(dirname $0)/env_$SITE.sh cd $YAML_BUILDS -# Install OS on Genesis + +echo "# Setup redfish tools to avoid race condition" +/opt/akraino/redfish/setup_tools.sh + +FILENAME=$(mktemp) +echo "# Updating BIOS settings on master and worker nodes in background [$FILENAME]" +python $YAML_BUILDS/scripts/update_bios_settings.py $SITE.yaml >$FILENAME & + +echo "# Install OS on Genesis" python $YAML_BUILDS/scripts/jcopy.py $SITE.yaml $YAML_BUILDS/tools/j2/serverrc.j2 $YAML_BUILDS/tools/"$GENESIS_NAME"rc /opt/akraino/redfish/install_server_os.sh --rc /opt/akraino/yaml_builds/tools/"$GENESIS_NAME"rc --skip-confirm -# Stage Airship files on Genesis +echo "# Stage Airship files on Genesis" scp $YAML_BUILDS/tars/promenade-bundle-$SITE.tar $GENESIS_HOST:/tmp/ ssh $GENESIS_HOST << EOF # TODO avoid following hard coding$ @@ -60,10 +68,14 @@ ssh $GENESIS_HOST << EOF mv configs/promenade-bundle/deploy_site.sh . EOF -# Update BIOS settings on master and worker nodes -#python $YAML_BUILDS/scripts/update_bios_settings.py $SITE.yaml +echo "# Waiting for BIOS updates to finish on master and worker nodes" +wait +# Show output from BIOS updates on master and worker nodes +cat $FILENAME +rm $FILENAME echo "#######################################" echo "# $0 finished" echo "#######################################" #pkill -9 $$ && exit 0 +