diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-09-30 16:24:38 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-09-30 16:24:38 -0400 |
commit | 9e645c06677ef146ab5dd36ce6e4be2329a1202b (patch) | |
tree | 9929bb08ef6dbc9cc5d924391ce58bb95ca8afbc /doc | |
parent | e76fea0e88ecc361eb7e301c0916a89cb4505c24 (diff) | |
download | vyos-cloud-init-9e645c06677ef146ab5dd36ce6e4be2329a1202b.tar.gz vyos-cloud-init-9e645c06677ef146ab5dd36ce6e4be2329a1202b.zip |
add doc
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config-mount-points.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/examples/cloud-config-mount-points.txt b/doc/examples/cloud-config-mount-points.txt index 416006db..3b45b47f 100644 --- a/doc/examples/cloud-config-mount-points.txt +++ b/doc/examples/cloud-config-mount-points.txt @@ -37,3 +37,10 @@ mounts: # complete. This must be an array, and must have 7 fields. mount_default_fields: [ None, None, "auto", "defaults,nobootwait", "0", "2" ] + +# swap can also be set up by the 'mounts' module +# default is to not create any swap files, because 'size' is set to 0 +swap: + filename: /swap.img + size: "auto" or size in bytes + maxsize: size in bytes |