Fix interrupted env before uninstalling vpp
[csit.git] / resources / tools / topo_installation.py
index b052a85..2931926 100755 (executable)
@@ -84,6 +84,10 @@ def main():
                 cmd = "dpkg -l | grep vpp"
                 ret, _, _ = ssh.exec_command(cmd)
                 if ret == 0:
+                    # Try to fix interrupted installations
+                    cmd = 'dpkg --configure -a'
+                    stdout = ssh_no_error(ssh, cmd, sudo=True)
+                    print "###TI {}".format(stdout)
                     # Try to remove installed vpp.* packages
                     cmd = 'apt-get purge -y "vpp.*"'
                     stdout = ssh_no_error(ssh, cmd, sudo=True)
@@ -102,6 +106,10 @@ def main():
                 cmd = "dpkg -l | grep vpp"
                 ret, _, _ = ssh.exec_command(cmd)
                 if ret == 0:
+                    # Try to fix interrupted installations
+                    cmd = 'dpkg --configure -a'
+                    stdout = ssh_no_error(ssh, cmd, sudo=True)
+                    print "###TI {}".format(stdout)
                     # Try to remove installed vpp.* packages
                     cmd = 'apt-get purge -y "vpp.*"'
                     stdout = ssh_no_error(ssh, cmd, sudo=True)