From 8daa99c560e8ce5a2f89b462ade3a6cdb5eebb6f Mon Sep 17 00:00:00 2001 From: Andre Sencioles Date: Wed, 18 Apr 2018 14:54:03 +1200 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e667c0a..fab7cbc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ -# gns3-ubuntu-cloud-init-data -Ubuntu cloud-init-data image for GNS3 virtual appliance +# Ubuntu cloud-init-data image for GNS3 virtual appliance + +Generated using the following commands: +``` +echo -e "#cloud-config\npassword: ubuntu\nchpasswd: { expire: False }\nssh_pwauth: True" > user-data +echo -e "instance-id: ubuntu\nlocal-hostname: ubuntu" > meta-data +mkisofs -output "ubuntu-cloud-init-data.iso" -volid cidata -joliet -rock {user-data,meta-data} +```