From 264ff30c0f4424fe48d2bd70c71b68bb9e5afc59 Mon Sep 17 00:00:00 2001 From: harlowja Date: Thu, 21 Jun 2012 23:57:52 -0700 Subject: Ensure that nothing was ran by checking the total count --- bin/cloud-init | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/cloud-init b/bin/cloud-init index d193272e..aff8f967 100755 --- a/bin/cloud-init +++ b/bin/cloud-init @@ -92,7 +92,8 @@ def extract_fns(args): def run_module_section(mods, action_name, section): full_section_name = MOD_SECTION_TPL % (section) (ran_am, failures) = mods.run_section(full_section_name) - if not ran_am: + total_attempted = ran_am + len(failures) + if total_attempted == 0: msg = ("No '%s' modules to run" " under section '%s'") % (action_name, full_section_name) sys.stderr.write("%s\n" % (msg)) -- cgit v1.2.3