From: martin@piware.de <> Date: Wed, 26 May 2010 08:14:03 +0000 (+0200) Subject: install-manifest: drop -y from apt-get install dselect X-Git-Url: https://piware.de/gitweb/?p=bin.git;a=commitdiff_plain;h=6c5e192b2c2f243c332099dbaaad3691abb967ad install-manifest: drop -y from apt-get install dselect --- diff --git a/install-manifest b/install-manifest index dce8daa..b6d7bc4 100755 --- a/install-manifest +++ b/install-manifest @@ -51,7 +51,7 @@ if options.keep_kernel: if subprocess.call(['which', 'dselect'], stdout=subprocess.PIPE) != 0: print >> sys.stderr, 'INFO: installing dselect (needed by this script)' - assert subprocess.call(['apt-get', '-y', 'install', 'dselect']) == 0 + assert subprocess.call(['apt-get', 'install', 'dselect']) == 0 # now apply the new selections assert subprocess.call(['dpkg', '--clear-selections']) == 0