From 257696c0ed4e9f0c890ee83b0bbf4a9562d230ed Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 2 Nov 2015 09:31:40 -0500 Subject: [PATCH] switched to 'support check mode' as it does not make changes and gathers information that might be needed for other tasks to check --- network/ipify_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/ipify_facts.py b/network/ipify_facts.py index adcf5e4702b..8f509dd278a 100644 --- a/network/ipify_facts.py +++ b/network/ipify_facts.py @@ -82,7 +82,7 @@ def main(): argument_spec = dict( api_url = dict(default='https://api.ipify.org'), ), - supports_check_mode=False + supports_check_mode=True, ) ipify_facts = IpifyFacts().run()