From b5c3659c29db2177665ff6c1c10587bc1d8eba1f Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Thu, 8 Jul 2010 20:52:54 -0400 Subject: add 'nobootwait' to the default options for fstab entries It just seems like for cloud instances, getting /etc/fstab written incorrectly with the result of non-booting system is worth avoiding. --- cloudinit/CloudConfig/cc_mounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cloudinit/CloudConfig') diff --git a/cloudinit/CloudConfig/cc_mounts.py b/cloudinit/CloudConfig/cc_mounts.py index d48177d0..58cd9f4c 100644 --- a/cloudinit/CloudConfig/cc_mounts.py +++ b/cloudinit/CloudConfig/cc_mounts.py @@ -34,7 +34,7 @@ def handle(name,cfg,cloud,log,args): [ "swap", "none", "swap", "sw", "0", "0" ] ] # fs_spec, fs_file, fs_vfstype, fs_mntops, fs-freq, fs_passno - defvals = [ None, None, "auto", "defaults", "0", "0" ] + defvals = [ None, None, "auto", "defaults,nobootwait", "0", "0" ] cfgmnt = [ ] if cfg.has_key("mounts"): -- cgit v1.2.3