From 283c6eea99ff5ce03f4c3c49ebf9d75ba7b2a31d Mon Sep 17 00:00:00 2001 From: Mark Stemm Date: Thu, 5 Oct 2017 18:01:34 -0700 Subject: [PATCH] Fully remove falco package. In case there are modified config files from a prior install. --- test/falco_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/falco_test.py b/test/falco_test.py index 8b9cf615..79b218e8 100644 --- a/test/falco_test.py +++ b/test/falco_test.py @@ -296,7 +296,7 @@ class FalcoTest(Test): res = process.run("docker rm falco-test") elif self.package.endswith(".deb"): - cmdline = "dpkg -r falco" + cmdline = "dpkg --purge falco" self.log.debug("Uninstalling debian package via \"{}\"".format(cmdline)) res = process.run(cmdline, timeout=120, sudo=True)