summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2010-02-24 16:10:19 -0500
committerScott Moser <smoser@ubuntu.com>2010-02-24 16:10:19 -0500
commit385802bf3396b149cfd61e20ea4c7e2c7974b307 (patch)
tree0a81215839f37e2e74b33c29932634c2de265710 /cloudinit
parentee9c84aadb35fdee6374bac16444c4e799c194e1 (diff)
downloadvyos-cloud-init-385802bf3396b149cfd61e20ea4c7e2c7974b307.tar.gz
vyos-cloud-init-385802bf3396b149cfd61e20ea4c7e2c7974b307.zip
fix format of cron.d/cloudinit-updates
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/CloudConfig.py2
1 files changed, 1 insertions, 1 deletions
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")