From 9812ce77a43f2712357629d777e5870f3c470a86 Mon Sep 17 00:00:00 2001 From: Sam Habiel Date: Sat, 31 Aug 2024 11:28:36 -0400 Subject: [PATCH] Change default Back up mail basket to be in IN instead of BACK UP This is a change to commit a19e811ba890975e03521cb399464e948af3f4ff which added that parameter. I found that in FOIA, the default BACK UP does not exist, and so was a poor choice for default. --- Scripts/DefaultKIDSBuildInstaller.py | 2 +- Scripts/DefaultKIDSBuildInstaller.rst | 2 +- Scripts/PatchSequenceApply.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/DefaultKIDSBuildInstaller.py b/Scripts/DefaultKIDSBuildInstaller.py index 739d98b2..f3eb41df 100644 --- a/Scripts/DefaultKIDSBuildInstaller.py +++ b/Scripts/DefaultKIDSBuildInstaller.py @@ -763,7 +763,7 @@ def main(): help='installer\'s VistA instance\'s DUZ') parser.add_argument('-bup', '--backupPath', default='/tmp/', help='Path for KIDS backup files') - parser.add_argument('-bub', '--backupBasket', default='BACK UP', + parser.add_argument('-bub', '--backupBasket', default='IN', help='Mail basket for KIDS backup files') result = parser.parse_args(); diff --git a/Scripts/DefaultKIDSBuildInstaller.rst b/Scripts/DefaultKIDSBuildInstaller.rst index 50c67650..378fd9b9 100644 --- a/Scripts/DefaultKIDSBuildInstaller.rst +++ b/Scripts/DefaultKIDSBuildInstaller.rst @@ -42,4 +42,4 @@ Optional parameters: * ``-d`` Installer DUZ (default 17) * ``-bup`` Backup-Path for backing up current state of system prior to installing KIDS build (default ``/tmp``). Only used for multibuilds. -* ``-bub`` Backup Mail Basket for backing up current state of system prior to installing KIDS build (default ``BACK UP``). Used for the rest of the builds. +* ``-bub`` Backup Mail Basket for backing up current state of system prior to installing KIDS build (default ``IN``). Used for the rest of the builds. diff --git a/Scripts/PatchSequenceApply.py b/Scripts/PatchSequenceApply.py index d0503213..b184e575 100755 --- a/Scripts/PatchSequenceApply.py +++ b/Scripts/PatchSequenceApply.py @@ -420,7 +420,7 @@ def main(): help='installer\'s VistA instance\'s DUZ') parser.add_argument('-bup', '--backupPath', default='/tmp/', help='Path for KIDS backup files') - parser.add_argument('-bub', '--backupBasket', default='BACK UP', + parser.add_argument('-bub', '--backupBasket', default='IN', help='Mail basket for KIDS backup files') result = parser.parse_args();