module Chef::Provider::Package::Deb

def run_noninteractive(*command)

interactive prompts.
Runs command via shell_out with magic environment to disable
def run_noninteractive(*command)
  shell_out!(*command, env: { "DEBIAN_FRONTEND" => "noninteractive" })
end