summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2011-10-31 11:22:27 -0400
committerScott Moser <smoser@ubuntu.com>2011-10-31 11:22:27 -0400
commitf7152b4659e3f4edb5ebc459db1285ff06a0d20f (patch)
tree7338456018576862cf8484d753fe61581a15d4bb /doc
parent6045bcc53d43a7d876d78c13d58cb7e94b282010 (diff)
downloadvyos-cloud-init-f7152b4659e3f4edb5ebc459db1285ff06a0d20f.tar.gz
vyos-cloud-init-f7152b4659e3f4edb5ebc459db1285ff06a0d20f.zip
add documentation of new config options
This adds doc/examples/cloud-config.txt data for the options that were added when pulling in Fedora support.
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/cloud-config.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt
index 571f477b..73a5e099 100644
--- a/doc/examples/cloud-config.txt
+++ b/doc/examples/cloud-config.txt
@@ -289,6 +289,8 @@ disable_root: false
# set the locale to a given locale
# default: en_US.UTF-8
locale: en_US.UTF-8
+# render template default-locale.tmpl to locale_configfile
+locale_configfile: /etc/default/locale
# add entries to rsyslog configuration
# The first occurance of a given filename will truncate.
@@ -474,3 +476,15 @@ manual_cache_clean: False
# example:
# cc_ready_cmd: [ sh, -c, 'echo HI MOM > /tmp/file' ]
+## configure interaction with ssh server
+# ssh_svcname: ssh
+# set the name of the option to 'service restart'
+# in order to restart the ssh daemon. For fedora, use 'sshd'
+# default: ssh
+# ssh_deletekeys: True
+# boolean indicating if existing ssh keys should be deleted on a
+# per-instance basis. On a public image, this should absolutely be set
+# to 'True'
+# ssh_genkeytypes: ['rsa', 'dsa', 'ecdsa']
+# a list of the ssh key types that should be generated
+# These are passed to 'ssh-keygen -t'