From c0af9d8a688d3bf3d512108ad26b0533845e3a82 Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Sat, 20 May 2023 23:11:20 +0200 Subject: [PATCH] Repair apply targeting In a master setup, target the minions, not the master itself. Signed-off-by: Georg Pfuetzenreuter --- scullery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scullery.py b/scullery.py index 5a479cc..c656f26 100755 --- a/scullery.py +++ b/scullery.py @@ -227,7 +227,7 @@ def main_interactive(): if 'apply' in testconf: log.debug('state.apply requested') if masters is not None: - target = masters[0] + target = 'scullery-*' else: target = 'local' runapply(testconf['apply'], target)