From 1a88a3362f42dfd68c8d9ab955d546e9a8e74872 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 --- library/apt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/apt b/library/apt index 9229325e1bc..5f26114a35f 100755 --- a/library/apt +++ b/library/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)