diff --git a/bin/deploy-quintupleo b/bin/deploy-quintupleo deleted file mode 100755 index 79f6cc5..0000000 --- a/bin/deploy-quintupleo +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -echo 'WARNING: This script is deprecated. deploy.py should now be used instead.' - -stack_name=${1:-quintupleo} -op=create -if heat stack-list | grep " $stack_name "; then - op=update -fi -heat stack-$op -f templates/quintupleo.yaml -e templates/resource-registry.yaml -e env.yaml $stack_name diff --git a/bin/deploy-stack b/bin/deploy-stack deleted file mode 100755 index 2919508..0000000 --- a/bin/deploy-stack +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -echo 'WARNING: This script is deprecated. deploy.py should now be used instead.' - -op=create -if heat stack-list | grep " baremetal "; then - op=update -fi -heat stack-$op -f templates/virtual-baremetal.yaml -e templates/resource-registry.yaml baremetal -e env.yaml