From 63c631a99b93e549dc1ee2035a2f9e61d73c5e43 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Fri, 10 Jul 2015 07:31:57 -0400 Subject: [PATCH] Add dependency of 'runroot' config option on 'koji_profile'. --- pungi/phases/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/init.py b/pungi/phases/init.py index b9ea0d55..29bcf095 100644 --- a/pungi/phases/init.py +++ b/pungi/phases/init.py @@ -132,7 +132,7 @@ class InitPhase(PhaseBase): "name": "runroot", "expected_types": [bool], "requires": ( - (lambda x: bool(x), ["runroot_tag", "runroot_channel"]), + (lambda x: bool(x), ["koji_profile", "runroot_tag", "runroot_channel"]), ), "conflicts": ( (lambda x: not bool(x), ["runroot_tag", "runroot_channel"]),