From 25746670323358f06dcf48991e09393939de2292 Mon Sep 17 00:00:00 2001 From: Aaron Elkiss Date: Mon, 24 Nov 2025 14:57:43 -0500 Subject: [PATCH] Partially revert truenas deployment b48a644263acf90cc44addabdbbacd1aba6a4c69 * Truenas is now in use everywhere so we don't need to deploy 4 places * However, we want to deprecate the use of nas-macc / nas-ictc aliases --- mdp-tools/scripts/deploy-app | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/mdp-tools/scripts/deploy-app b/mdp-tools/scripts/deploy-app index 6ec57049c..72783bab0 100755 --- a/mdp-tools/scripts/deploy-app +++ b/mdp-tools/scripts/deploy-app @@ -91,7 +91,7 @@ use ToolLib; sub deploy_app_usage { my $s = qq{Usage: deploy-app [options] [ []+] where is the application to tag and deploy or re-deploy from an existing tag - -m ictc|ictc_truenas|macc|macc_truenas|preview deploy just to one site/storage - default: macc + macc_truenas + ictc + ictc_truenas + -m ictc|macc|preview deploy just to ictc, macc, or preview (rsync target) - default: macc + ictc -v verbose -n dry run -S , babel (default), www, catalog @@ -228,10 +228,8 @@ sub __handle_SITE { my $opt = shift; my %sites = ( - macc => 'nas-macc.umdl.umich.edu:/htapps/', - macc_truenas => 'macc-ht-web-139.umdl.umich.edu:/htapps/', - ictc => 'nas-ictc.umdl.umich.edu:/htapps/', - ictc_truenas => 'ictc-ht-web-208.umdl.umich.edu:/htapps/', + macc => 'macc-ht-web-133.umdl.umich.edu:/htapps/', + ictc => 'ictc-ht-web-206.umdl.umich.edu:/htapps/', preview => 'ht-web-preview.umdl.umich.edu:/htapps/preview.' ); @@ -244,7 +242,7 @@ sub __handle_SITE { return ($sites{$opt}) } else { - return ($sites{'macc'},$sites{'ictc'},$sites{'macc_truenas'},$sites{'ictc_truenas'}) + return ($sites{'macc'},$sites{'ictc'}) } }