diff options
-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 |