reinstall/cloud-init.yaml

28 lines
1.1 KiB
YAML
Raw Normal View History

2023-07-22 22:02:33 +08:00
#cloud-config
datasource_list: [None]
2023-08-07 23:28:02 +08:00
timezone: Asia/Shanghai
2023-07-22 22:02:33 +08:00
disable_root: false
ssh_pwauth: true
users:
- name: root
lock_passwd: false
chpasswd:
expire: false
# 20.04 arm 需要
list: |
root:123@@@
users:
- name: root
password: 123@@@
type: text
runcmd:
2024-05-03 23:34:42 +08:00
# opensuse tumbleweed 镜像有 /etc/ssh/sshd_config.d/ 文件夹,没有 /etc/ssh/sshd_config有/usr/etc/ssh/sshd_config
# opensuse tumbleweed cloud-init 直接创建并写入 /etc/ssh/sshd_config造成默认配置丢失
# 下面这行删除 clout-init 创建的 sshd_config
- test $(wc -l </etc/ssh/sshd_config) -le 1 && cat /etc/ssh/sshd_config >>/etc/ssh/sshd_config.d/50-cloud-init.conf && rm -f /etc/ssh/sshd_config
- echo "PermitRootLogin yes" >/etc/ssh/sshd_config.d/01-permitrootlogin.conf || sed -Ei 's/^#?PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config
2024-03-05 23:01:24 +08:00
- systemctl restart sshd || systemctl restart ssh
- touch /etc/cloud/cloud-init.disabled
# ubuntu 镜像运行 echo -e '\nDone' -e 会被显示出来
2024-02-01 01:02:35 +08:00
- printf '\n%s\n' 'reinstall done' >/dev/tty0 || true