X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fplanetlab%2Fupdate_fedora_repo.py;h=ed26f8dfd5accea593b865592956e76590c92daf;hb=40e6d376152c072bc852117f0a58e88d9e0024af;hp=67c82a3b9297a9cd53a8abc2fe159e6b5db61b9f;hpb=e55924b6886bd7382a28e1ae235c4810f852e163;p=nepi.git diff --git a/examples/planetlab/update_fedora_repo.py b/examples/planetlab/update_fedora_repo.py index 67c82a3b..ed26f8df 100644 --- a/examples/planetlab/update_fedora_repo.py +++ b/examples/planetlab/update_fedora_repo.py @@ -27,6 +27,10 @@ # $ cd # python examples/planetlab/update_fedora_repo.py -H -s -u -p -k +from __future__ import print_function + +from six.moves import input + from nepi.execution.ec import ExperimentController from optparse import OptionParser, SUPPRESS_HELP @@ -55,7 +59,7 @@ parser.add_option("-k", "--pl-ssh-key", dest="pl_ssh_key", (options, args) = parser.parse_args() -proceed = raw_input ("Executing this script will modify the fedora yum repositories in the selected PlanetLab hosts. Are you sure to continue? [y/N] ") +proceed = input ("Executing this script will modify the fedora yum repositories in the selected PlanetLab hosts. Are you sure to continue? [y/N] ") if proceed.lower() not in ['yes', 'y']: os._exit(1) @@ -65,7 +69,7 @@ pl_user = options.pl_user pl_password = options.pl_password hosts = options.hosts -hosts = map(str.strip, hosts.split(",")) +hosts = [host.strip() for host in hosts.split(",")] apps = [] ## Create the experiment controller @@ -132,9 +136,9 @@ ec.wait_finished(apps) for app in apps: try: - print ec.trace(app, "stderr") + print(ec.trace(app, "stderr")) except: - print "NO stderr" + print("NO stderr") ec.shutdown()