From 72aefdb609a16fa55903939b210d215f48925d75 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 16 Jul 2012 20:18:58 -0400 Subject: [PATCH] add noninteractive to debian module per #602 --- apt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apt b/apt index 9229325e1bc..5f26114a35f 100755 --- a/apt +++ b/apt @@ -33,7 +33,7 @@ import warnings; warnings.filterwarnings('ignore', "apt API not stable yet", FutureWarning) APT_PATH = "/usr/bin/apt-get" -APT = "DEBIAN_PRIORITY=critical %s" % APT_PATH +APT = "DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical %s" % APT_PATH def exit_json(rc=0, **kwargs): print json.dumps(kwargs)