mirror of
https://github.com/joleuger/vuinputd.git
synced 2026-07-18 08:55:25 +00:00
21 lines
421 B
Cheetah
21 lines
421 B
Cheetah
#cloud-config
|
|
#
|
|
# Shared cloud-init configuration for distro-tests
|
|
# SSH keys are injected dynamically by create-cloud-init-iso.sh
|
|
#
|
|
|
|
users:
|
|
- name: testuser
|
|
groups: users, adm
|
|
shell: /bin/bash
|
|
sudo: ALL=(ALL) NOPASSWD:ALL
|
|
ssh_authorized_keys:
|
|
|
|
disable_root: true
|
|
ssh_pwauth: false
|
|
|
|
package_update: false
|
|
package_upgrade: false
|
|
|
|
runcmd:
|
|
- echo "cloud-init bootstrap complete" > /var/tmp/cloud-init-ok
|