mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-25 07:21:06 +00:00
10 lines
388 B
Markdown
10 lines
388 B
Markdown
# Ubuntu-cloud cloud-init-data image for GNS3 virtual appliance
|
|
|
|
Generated using the following commands:
|
|
|
|
```
|
|
printf "#cloud-config\n\npassword: ubuntu\nchpasswd: { expire: False }\nssh_pwauth: True\n" > user-data
|
|
printf "instance-id: ubuntu-cloud\nlocal-hostname: ubuntu-cloud\n" > meta-data
|
|
mkisofs -output ubuntu-cloud-init-data.iso -volid cidata -joliet -rock user-data meta-data
|
|
```
|