From 8e5af7b964bf0c9eb36aa335942a2968b45734bb Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Sun, 27 Sep 2015 12:58:13 -0700 Subject: [PATCH] Add slides URL to printed cards --- prepare-vms/ips-txt-to-html.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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()