Wraps deploy script execution on to prevent partial execution if it is terminated before finished transfering

This commit is contained in:
Bruno Tavares 2015-09-26 00:51:19 -03:00
parent c3fcd798c3
commit 6149a4a8e1

View File

@ -11,6 +11,7 @@ shift
remote_command=$(
cat <<CMD
{
deploy_folder=\$(mktemp -d -t kickstart.XXXXX)
mkdir -p "\$deploy_folder"
cd "\$deploy_folder"
@ -19,6 +20,7 @@ cat <<CMD
$prefix bash $debug install.sh || exit_status=\$?
rm -rf "\$deploy_folder"
exit \$exit_status
}
CMD
)