f3523f3923
This is the first step for rebasing cloud-init to 21.3. All patches are rebased, old patches that are already on the release were deleted. Signed-off-by: Eduardo Otubo <otubo@redhat.com>
89 lines
1.8 KiB
Diff
89 lines
1.8 KiB
Diff
From d46ac3af1e964916f65dd920fc54bd8c0c8e32de Mon Sep 17 00:00:00 2001
|
|
From: Eduardo Otubo <otubo@redhat.com>
|
|
Date: Thu, 10 Dec 2020 17:43:15 +0100
|
|
Subject: [PATCH] Adding RHEL default cloud.cfg
|
|
|
|
---
|
|
rhel/cloud.cfg | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 69 insertions(+)
|
|
create mode 100644 rhel/cloud.cfg
|
|
|
|
diff --git a/rhel/cloud.cfg b/rhel/cloud.cfg
|
|
new file mode 100644
|
|
index 00000000..9ecba215
|
|
--- /dev/null
|
|
+++ b/rhel/cloud.cfg
|
|
@@ -0,0 +1,69 @@
|
|
+users:
|
|
+ - default
|
|
+
|
|
+disable_root: 1
|
|
+ssh_pwauth: 0
|
|
+
|
|
+mount_default_fields: [~, ~, 'auto', 'defaults,nofail,x-systemd.requires=cloud-init.service', '0', '2']
|
|
+resize_rootfs_tmp: /dev
|
|
+ssh_deletekeys: 1
|
|
+ssh_genkeytypes: ~
|
|
+syslog_fix_perms: ~
|
|
+disable_vmware_customization: false
|
|
+
|
|
+cloud_init_modules:
|
|
+ - disk_setup
|
|
+ - migrator
|
|
+ - bootcmd
|
|
+ - write-files
|
|
+ - growpart
|
|
+ - resizefs
|
|
+ - set_hostname
|
|
+ - update_hostname
|
|
+ - update_etc_hosts
|
|
+ - rsyslog
|
|
+ - users-groups
|
|
+ - ssh
|
|
+
|
|
+cloud_config_modules:
|
|
+ - mounts
|
|
+ - locale
|
|
+ - set-passwords
|
|
+ - rh_subscription
|
|
+ - yum-add-repo
|
|
+ - package-update-upgrade-install
|
|
+ - timezone
|
|
+ - puppet
|
|
+ - chef
|
|
+ - salt-minion
|
|
+ - mcollective
|
|
+ - disable-ec2-metadata
|
|
+ - runcmd
|
|
+
|
|
+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_info:
|
|
+ default_user:
|
|
+ name: cloud-user
|
|
+ lock_passwd: true
|
|
+ gecos: Cloud User
|
|
+ groups: [adm, systemd-journal]
|
|
+ sudo: ["ALL=(ALL) NOPASSWD:ALL"]
|
|
+ shell: /bin/bash
|
|
+ distro: rhel
|
|
+ paths:
|
|
+ cloud_dir: /var/lib/cloud
|
|
+ templates_dir: /etc/cloud/templates
|
|
+ ssh_svcname: sshd
|
|
+
|
|
+# vim:syntax=yaml
|
|
--
|
|
2.27.0
|
|
|