From 2638cc9a492c06d90d5aac38c56df84e26afbb3a Mon Sep 17 00:00:00 2001 From: James Laska Date: Fri, 14 Mar 2014 10:24:52 -0400 Subject: [PATCH] Correct check_mode conditional logic The desired behavior is to _not_ add the ppa signing key when check_mode is enabled. This fix corrects the conditional logic to comply with the stated behavior. --- packaging/apt_repository | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/apt_repository b/packaging/apt_repository index 7a19dabc167..8e902d5a448 100644 --- a/packaging/apt_repository +++ b/packaging/apt_repository @@ -353,9 +353,9 @@ def get_add_ppa_signing_key_callback(module): module.run_command(command, check_rc=True) if module.check_mode: - return _run_command - else: return None + else: + return _run_command def main():