From 6112b3651fca6fb4b2a5e0fc141b5545ff4c5237 Mon Sep 17 00:00:00 2001 From: Kris Sterckx Date: Tue, 20 Jun 2017 18:37:55 +0200 Subject: [PATCH] Work around for guest VM password reset failure (NuageVsp) --- systemvm/patches/debian/config/opt/cloud/bin/configure.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/systemvm/patches/debian/config/opt/cloud/bin/configure.py b/systemvm/patches/debian/config/opt/cloud/bin/configure.py index 0a469d11e0eb..5d284a1a02e5 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/configure.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/configure.py @@ -945,8 +945,10 @@ def main(argv): if process_file in ["cmd_line.json", "vm_password.json"]: logging.debug("Configuring vmpassword") - password = CsPassword("vmpassword", config) - password.process() + # TODO fix the line below + # password = CsPassword("vmpassword", config) + # password.process() + iptables_change = True if process_file in ["cmd_line.json", "vm_metadata.json"]: logging.debug("Configuring vmdata")