diff --git a/prepare-vms/ips-txt-to-html.py b/prepare-vms/ips-txt-to-html.py index 67018193..0b7a9f60 100755 --- a/prepare-vms/ips-txt-to-html.py +++ b/prepare-vms/ips-txt-to-html.py @@ -8,6 +8,7 @@ SETTINGS_BASIC = dict( "to the VM using your SSH client.

\n" "

Your VM is reachable on the following address:

\n", prettify=lambda x: x, + footer="", ) SETTINGS_ADVANCED = dict( @@ -15,10 +16,12 @@ SETTINGS_ADVANCED = dict( pagesize=12, blurb="

Here is the connection information to your very own " "cluster for this orchestration workshop. You can connect " - "to each VM with your SSH client.

\n" + "to each VM with any SSH client.

\n" "

Your machines are:

") html.write("

login=docker password=training

\n") + html.write(footer) html.write("") html.close()