# HG changeset patch # User Goffi # Date 1457130342 -3600 # Node ID 5d8b9ca2afd48d7999f14c613e085090826ef592 # Parent 14b29b9e06bba75c71b27d9e0f81cc591521cd67 docker (libervia): fixed bad escaping after moving libervia_cont_launch from Dockerfile to scripts/ diff -r 14b29b9e06bb -r 5d8b9ca2afd4 docker/libervia/scripts/libervia_cont_launch --- a/docker/libervia/scripts/libervia_cont_launch Tue Mar 01 15:47:02 2016 +0100 +++ b/docker/libervia/scripts/libervia_cont_launch Fri Mar 04 23:25:42 2016 +0100 @@ -20,14 +20,14 @@ try: sat.getProfileName(profile) except Exception as e: - print "{} profile doesn'\''t exists, creating it".format(profile) + print "{} profile doesn't exists, creating it".format(profile) print "registering {}@{}".format(profile, sat.getNewAccountDomain()) pwd = generate_pwd() if profile == "libervia": config.fixConfigOption("libervia", "passphrase", pwd) elif profile == "admin": with open("/home/sat/ADMIN_PWD", "w") as f: - f.write("%s\\n" % pwd) + f.write("%s\n" % pwd) sat.registerSatAccount(admin_email, pwd, profile) os.execvp("libervia", ["libervia"] + sys.argv[1:])