From adc4a018de9b4133359a7d5348d1cb8aeec76346 Mon Sep 17 00:00:00 2001 From: Norman Abramovitz Date: Wed, 5 Jan 2022 16:57:51 -0800 Subject: [PATCH] Added small-footprint to new script --- hooks/new | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hooks/new b/hooks/new index cda7ce5..0535504 100755 --- a/hooks/new +++ b/hooks/new @@ -28,11 +28,12 @@ kit_type= # Assigned below prompt_for kit_type "select" \ "Is this a full Concourse deployment, or a worker deployment for an existing Concourse?" \ -o "[full] Full Concourse" \ + -o "[small-footprint] Small Footprint Concourse" \ -o "[workers] Satellite Concourse" features+=( "$kit_type" ) -if [[ "$kit_type" == "full" ]] ; then +if [[ "$kit_type" == "full" || "$kit_type" == "small-footprint" ]] ; then auth_backend_feature= prompt_for auth_backend_feature "select" \