31 lines
885 B
Plaintext
31 lines
885 B
Plaintext
|
#cloud-config
|
||
|
|
||
|
# This is the user-data configuration file for cloud-init. By default this sets
|
||
|
# up an initial user called "ubuntu" with password "ubuntu", which must be
|
||
|
# changed at first login. However, many additional actions can be initiated on
|
||
|
# first boot from this file. The cloud-init documentation has more details:
|
||
|
#
|
||
|
# https://cloudinit.readthedocs.io/
|
||
|
#
|
||
|
# Some additional examples are provided in comments below the default
|
||
|
# configuration.
|
||
|
|
||
|
# https://cloudinit.readthedocs.io/en/latest/topics/examples.html#yaml-examples
|
||
|
|
||
|
chpasswd:
|
||
|
expire: false
|
||
|
list:
|
||
|
- roxedus:roxedus
|
||
|
|
||
|
# Enable password authentication with the SSH daemon
|
||
|
ssh_pwauth: true
|
||
|
|
||
|
system_info:
|
||
|
default_user:
|
||
|
name: roxedus
|
||
|
plain_text_passwd: roxedus
|
||
|
home: /home/roxedus
|
||
|
shell: /bin/bash
|
||
|
lock_passwd: True
|
||
|
groups: [adm, audio, cdrom, dialout, floppy, video, plugdev, dip, netdev]
|