forked from pool/cloud-init
Robert Schweikert
ddcfa56afe
+ when using nofail an attempt is made to mount the filesystem twice once via udev and once through localfs, this results in a hanging system if fsck needs to run on the device OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/cloud-init?expand=0&rev=3
61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
# Adapted default config for (open)SUSE systems
|
|
|
|
users:
|
|
- root
|
|
|
|
disable_root: false
|
|
preserve_hostname: false
|
|
syslog_fix_perms: root:root
|
|
mount_default_fields: [~, ~, 'auto', 'defaults', '0', '2']
|
|
|
|
# The modules that run in the 'init' stage
|
|
cloud_init_modules:
|
|
- migrator
|
|
- bootcmd
|
|
- write-files
|
|
- resizefs
|
|
- set_hostname
|
|
- update_hostname
|
|
- update_etc_hosts
|
|
- ca-certs
|
|
- rsyslog
|
|
- users-groups
|
|
- ssh
|
|
|
|
# The modules that run in the 'config' stage
|
|
cloud_config_modules:
|
|
- mounts
|
|
- ssh-import-id
|
|
- locale
|
|
- set-passwords
|
|
- package-update-upgrade-install
|
|
- timezone
|
|
- puppet
|
|
- chef
|
|
- salt-minion
|
|
- mcollective
|
|
- disable-ec2-metadata
|
|
- runcmd
|
|
- byobu
|
|
|
|
# The modules that run in the 'final' stage
|
|
cloud_final_modules:
|
|
- rightscale_userdata
|
|
- scripts-per-once
|
|
- scripts-per-boot
|
|
- scripts-per-instance
|
|
- scripts-user
|
|
- ssh-authkey-fingerprints
|
|
- keys-to-console
|
|
- phone-home
|
|
- final-message
|
|
- power-state-change
|
|
|
|
# System and/or distro specific settings
|
|
system_info:
|
|
distro: INSERT_SUSE_DISTRO
|
|
paths:
|
|
cloud_dir: /var/lib/cloud/
|
|
templates_dir: /etc/cloud/templates/
|
|
ssh_svcname: sshd
|