don't install recommends
authorMartin Zobel-Helas <zobel@debian.org>
Sat, 14 Apr 2012 14:11:22 +0000 (16:11 +0200)
committerMartin Zobel-Helas <zobel@debian.org>
Sat, 14 Apr 2012 14:11:22 +0000 (16:11 +0200)
Signed-off-by: Martin Zobel-Helas <zobel@debian.org>
input/howto/new-machine.creole

index 71e93a8..22bb929 100644 (file)
@@ -5,12 +5,12 @@ Note: this has recently been changed to rely more on [[puppet|howto/puppet-setup
 
 * install ssh if it isn't there already
 {{{
-    apt-get install ssh
+    apt-get install --no-install-recommends ssh
 }}}
 
 * sane editor
 {{{
-    apt-get install vim
+    apt-get install --no-install-recommends vim
 }}}
 
 * sane locales: (make sure there is _no_ locale defined in /etc/environment and /etc/default/locale)
@@ -21,7 +21,7 @@ Note: this has recently been changed to rely more on [[puppet|howto/puppet-setup
 
 * make debconf the same on every host: - dialog, - high
 {{{
-    apt-get install dialog &&
+    apt-get install --no-install-recommends dialog &&
     echo "debconf debconf/priority        select high" | debconf-set-selections &&
     echo "debconf debconf/frontend        select Dialog" | debconf-set-selections
 }}}