diff options
author | Harm Weites <harm@weites.com> | 2014-08-10 11:54:28 +0000 |
---|---|---|
committer | Harm Weites <harm@weites.com> | 2014-08-10 11:54:28 +0000 |
commit | c36d75552221e165f84493c5105318c088b44514 (patch) | |
tree | c6a82d366a08feb96dc33b25ae2857162619abf8 /config | |
parent | 833ebcba6ca333183284d1f9a0fe5f53df802712 (diff) | |
download | vyos-cloud-init-c36d75552221e165f84493c5105318c088b44514.tar.gz vyos-cloud-init-c36d75552221e165f84493c5105318c088b44514.zip |
change: Cancel execution of several modules that are definately not
tested or supported yet.
Diffstat (limited to 'config')
-rw-r--r-- | config/cloud.freebsd.cfg | 56 |
1 files changed, 17 insertions, 39 deletions
diff --git a/config/cloud.freebsd.cfg b/config/cloud.freebsd.cfg index 40e2374a..2d65aac4 100644 --- a/config/cloud.freebsd.cfg +++ b/config/cloud.freebsd.cfg @@ -29,37 +29,37 @@ preserve_hostname: false # The modules that run in the 'init' stage cloud_init_modules: - - migrator +# - migrator - seed_random - bootcmd - - write-files +# - write-files - growpart - resizefs - set_hostname - update_hostname - - update_etc_hosts - - ca-certs - - rsyslog +# - update_etc_hosts +# - ca-certs +# - rsyslog - users-groups - - ssh +# - ssh # The modules that run in the 'config' stage cloud_config_modules: - - disk_setup - - mounts +# - disk_setup +# - mounts - ssh-import-id - locale - - set-passwords - - package-update-upgrade-install - - landscape - - timezone - - puppet - - chef - - salt-minion - - mcollective +# - set-passwords +# - package-update-upgrade-install +# - landscape +# - timezone +# - puppet +# - chef +# - salt-minion +# - mcollective - disable-ec2-metadata - runcmd - - byobu +# - byobu # The modules that run in the 'final' stage cloud_final_modules: @@ -78,9 +78,7 @@ cloud_final_modules: # System and/or distro specific settings # (not accessible to handlers/transforms) system_info: - # This will affect which distro class gets used distro: freebsd - # Default user name + that default users groups (if added/used) default_user: name: beastie lock_passwd: True @@ -88,23 +86,3 @@ system_info: groups: [wheel] sudo: ["ALL=(ALL) NOPASSWD:ALL"] shell: /bin/sh - # Other config here will be given to the distro class and/or path classes - paths: - cloud_dir: /var/lib/cloud/ - templates_dir: /etc/cloud/templates/ - upstart_dir: /etc/init/ - package_mirrors: - - arches: [i386, amd64] - failsafe: - primary: http://archive.ubuntu.com/ubuntu - security: http://security.ubuntu.com/ubuntu - search: - primary: - - http://%(ec2_region)s.ec2.archive.ubuntu.com/ubuntu/ - - http://%(availability_zone)s.clouds.archive.ubuntu.com/ubuntu/ - security: [] - - arches: [armhf, armel, default] - failsafe: - primary: http://ports.ubuntu.com/ubuntu-ports - security: http://ports.ubuntu.com/ubuntu-ports - ssh_svcname: ssh |