13 lines
198 B
Plaintext
13 lines
198 B
Plaintext
|
#cloud-config
|
||
|
ssh_pwauth: True
|
||
|
user: ${user}
|
||
|
password: ${password}
|
||
|
chpasswd:
|
||
|
expire: False
|
||
|
|
||
|
# Work around network interface down after boot
|
||
|
runcmd:
|
||
|
%{ for cmd in runcmd ~}
|
||
|
- ${cmd}
|
||
|
%{ endfor ~}
|