diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-07-08 21:00:12 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-07-08 21:00:12 -0400 |
commit | 9d683e844d75ce375670638dece900fa3f21c78d (patch) | |
tree | 5f492bf87ce484733bab0f9c6a7265c678316f89 /cloudinit | |
parent | b5c3659c29db2177665ff6c1c10587bc1d8eba1f (diff) | |
download | vyos-cloud-init-9d683e844d75ce375670638dece900fa3f21c78d.tar.gz vyos-cloud-init-9d683e844d75ce375670638dece900fa3f21c78d.zip |
change default 'pass' entry to '2' rather than 0
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/CloudConfig/cc_mounts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/CloudConfig/cc_mounts.py b/cloudinit/CloudConfig/cc_mounts.py index 58cd9f4c..32cfe02e 100644 --- a/cloudinit/CloudConfig/cc_mounts.py +++ b/cloudinit/CloudConfig/cc_mounts.py @@ -30,11 +30,11 @@ def is_mdname(name): def handle(name,cfg,cloud,log,args): # these are our default set of mounts - defmnts = [ [ "ephemeral0", "/mnt", "auto", "defaults", "0", "0" ], + defmnts = [ [ "ephemeral0", "/mnt", "auto", "defaults", "0", "2" ], [ "swap", "none", "swap", "sw", "0", "0" ] ] # fs_spec, fs_file, fs_vfstype, fs_mntops, fs-freq, fs_passno - defvals = [ None, None, "auto", "defaults,nobootwait", "0", "0" ] + defvals = [ None, None, "auto", "defaults,nobootwait", "0", "2" ] cfgmnt = [ ] if cfg.has_key("mounts"): |