diff --git a/fuselage/providers/apt.py b/fuselage/providers/apt.py index 2a82a25b..eec786df 100644 --- a/fuselage/providers/apt.py +++ b/fuselage/providers/apt.py @@ -58,7 +58,16 @@ def apply(self): # the search returned 1, package is not installed, continue and install # it - command = ["apt-get", "install", "-q", "-y", "--force-yes", self.resource.name] + command = [ + "apt-get", + "install", + "-q", + "-y", + "--force-yes", + "-o", + "DPkg::Options::=--force-confdef", + self.resource.name + ] try: self.change(ShellCommand(command, env=env))