From 385802bf3396b149cfd61e20ea4c7e2c7974b307 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Wed, 24 Feb 2010 16:10:19 -0500 Subject: fix format of cron.d/cloudinit-updates --- cloudinit/CloudConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/CloudConfig.py b/cloudinit/CloudConfig.py index 6c54ae8e..6fc9090a 100644 --- a/cloudinit/CloudConfig.py +++ b/cloudinit/CloudConfig.py @@ -490,7 +490,7 @@ def handle_updates_check(cfg): try: cron=open("%s-%s" % (cronpre, "updates") ,"w") cron.write("%s root %s\n" % \ - (time.strftime("%M %H * * * *"),' '.join(cmd))) + (time.strftime("%M %H * * *"),' '.join(cmd))) cron.close() except: warn("failed to enable cron update system check") -- cgit v1.2.3