From 06b6b316f591f01ac59304620afa200d0d62cac9 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Thu, 9 Sep 2010 15:55:30 -0400 Subject: change default for ephemeral0 device to use 'nobootwait' This means that if you booted an ebs instance with a ephemeral0 device and then stopped it and modified its type to be one that did *not* have an ephemeral0 device, you'd still have the entry, but it wouldn't block boot. LP: #634102 --- cloudinit/CloudConfig/cc_mounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/CloudConfig/cc_mounts.py b/cloudinit/CloudConfig/cc_mounts.py index 97ea1138..c8746d33 100644 --- a/cloudinit/CloudConfig/cc_mounts.py +++ b/cloudinit/CloudConfig/cc_mounts.py @@ -33,7 +33,7 @@ def is_mdname(name): def handle(name,cfg,cloud,log,args): # these are our default set of mounts - defmnts = [ [ "ephemeral0", "/mnt", "auto", "defaults", "0", "2" ], + defmnts = [ [ "ephemeral0", "/mnt", "auto", "defaults,nobootwait", "0", "2" ], [ "swap", "none", "swap", "sw", "0", "0" ] ] # fs_spec, fs_file, fs_vfstype, fs_mntops, fs-freq, fs_passno -- cgit v1.2.3