fix: Update cloud-init file contents
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Danny Bessems 2023-10-24 09:13:33 +02:00
parent 3bc3da54be
commit 49b8b80db0

View File

@ -1,10 +1,19 @@
#cloud-config #cloud-config
autoinstall: autoinstall:
version: 1 version: 1
apt:
geoip: true
preserve_sources_list: false
primary:
- arches: [amd64, i386]
uri: http://archive.ubuntu.com/ubuntu
- arches: [default]
uri: http://ports.ubuntu.com/ubuntu-ports
early-commands:
- sudo systemctl stop ssh
locale: en_US locale: en_US
keyboard: keyboard:
layout: en layout: us
variant: us
network: network:
network: network:
version: 2 version: 2
@ -16,14 +25,18 @@ autoinstall:
layout: layout:
name: direct name: direct
identity: identity:
hostname: packer-template hostname: ubuntu-server
username: ubuntu username: ubuntu
# password: $6$ZThRyfmSMh9499ar$KSZus58U/l58Efci0tiJEqDKFCpoy.rv25JjGRv5.iL33AQLTY2aljumkGiDAiX6LsjzVsGTgH85Tx4S.aTfx0
password: $6$rounds=4096$ZKfzRoaQOtc$M.fhOsI0gbLnJcCONXz/YkPfSoefP4i2/PQgzi2xHEi2x9CUhush.3VmYKL0XVr5JhoYvnLfFwqwR/1YYEqZy/ password: $6$rounds=4096$ZKfzRoaQOtc$M.fhOsI0gbLnJcCONXz/YkPfSoefP4i2/PQgzi2xHEi2x9CUhush.3VmYKL0XVr5JhoYvnLfFwqwR/1YYEqZy/
ssh: ssh:
install-server: yes install-server: true
allow-pw: true allow-pw: true
packages:
- openssh-server
- open-vm-tools
- cloud-init
user-data: user-data:
disable_root: false disable_root: false
late-commands: late-commands:
- echo 'ubuntu ALL=(ALL) NOPASSWD:ALL' > /target/etc/sudoers.d/ubuntu - echo 'ubuntu ALL=(ALL) NOPASSWD:ALL' > /target/etc/sudoers.d/ubuntu
- curtin in-target --target=/target -- chmod 440 /etc/sudoers.d/ubuntu