From 07aede1088ef09438a8e387bb6ca82a8567af011 Mon Sep 17 00:00:00 2001 From: Nathan Denny Date: Thu, 22 May 2025 12:06:44 -0400 Subject: [PATCH] bugfix in "become conductor"; moving some files to new repo specific to containerization. --- bin/bastion.py | 2 +- etc/{conf-000-dockerized.yaml => dockerized-conf.yaml} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename etc/{conf-000-dockerized.yaml => dockerized-conf.yaml} (100%) diff --git a/bin/bastion.py b/bin/bastion.py index 3264037..c89c5da 100755 --- a/bin/bastion.py +++ b/bin/bastion.py @@ -1018,7 +1018,7 @@ def do_become_conductor(self, request): bcommand = "{} -c 3 -t {}".format(str(IONICE), bcommand) if not simulated: logger.debug("executing... {}".format(str(bcommand))) - os.system(qcommand) + os.system(bcommand) else: logger.debug("simulating... {}".format(str(bcommand))) lastCheckIn = datetime.datetime.now() diff --git a/etc/conf-000-dockerized.yaml b/etc/dockerized-conf.yaml similarity index 100% rename from etc/conf-000-dockerized.yaml rename to etc/dockerized-conf.yaml