diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-20 16:33:21 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-20 16:33:21 -0700 |
commit | d464a95b93a3956ba09edba91d651c9493bd66ca (patch) | |
tree | 438453aed60a57515ef5b1e355d7a9c6e874a65f /config/cloud.cfg | |
parent | 7aa8cfa4f0292257568e6fc766c0fcc8d35b0b96 (diff) | |
download | vyos-cloud-init-d464a95b93a3956ba09edba91d651c9493bd66ca.tar.gz vyos-cloud-init-d464a95b93a3956ba09edba91d651c9493bd66ca.zip |
Move back to the old dashs mixed with underscores for now until checking/migrating and then using canonicalized name is done.
Diffstat (limited to 'config/cloud.cfg')
-rw-r--r-- | config/cloud.cfg | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/config/cloud.cfg b/config/cloud.cfg index b11b5aa5..a87b613d 100644 --- a/config/cloud.cfg +++ b/config/cloud.cfg @@ -1,11 +1,11 @@ # The top level settings are used as transforms # and system configuration. -# This user will have its passwd adjusted +# This user will have its password adjusted user: ubuntu # If this is set, 'root' will not be able to ssh in and they -# will get a message to login instead as the above $user +# will get a message to login instead as the above $user (ubuntu) disable_root: true # This will cause the set+update hostname module to not operate (if true) @@ -18,21 +18,18 @@ preserve_hostname: false # timeout: 5 # (defaults to 50 seconds) # max_wait: 10 # (defaults to 120 seconds) -# The transform that run in the 'init' stage +# The modules that run in the 'init' stage cloud_init_modules: -# This is the hash way of specifying a transform - - name: bootcmd -# This is the string way of specifying a transform - bootcmd - resizefs - - set-hostname - - update-hostname - - update-etc-hosts + - set_hostname + - update_hostname + - update_etc_hosts - ca-certs - rsyslog - ssh - # The transforms that run in the 'config' stage +# The modules that run in the 'config' stage cloud_config_modules: - mounts - ssh-import-id @@ -51,9 +48,9 @@ cloud_config_modules: - runcmd - byobu -# The transforms that run in the 'final' stage +# The modules that run in the 'final' stage cloud_final_modules: - - rightscale-userdata + - rightscale_userdata - scripts-per-once - scripts-per-boot - scripts-per-instance |