Merge a few steps
authorPeter Palfrader <peter@palfrader.org>
Sat, 30 Nov 2013 22:50:45 +0000 (23:50 +0100)
committerPeter Palfrader <peter@palfrader.org>
Sat, 30 Nov 2013 22:50:45 +0000 (23:50 +0100)
input/howto/new-machine.creole

index bb05c5b..cd5bbe8 100644 (file)
@@ -3,25 +3,12 @@
 Note: this has recently been changed to rely more on [[puppet|howto/puppet-setup]].  If stuff breaks fix it.
 
 
-* install ssh if it isn't there already
+* some initial stuff:
 {{{
-    apt-get install --no-install-recommends ssh
-}}}
-
-* sane editor
-{{{
-    apt-get install --no-install-recommends vim
-}}}
-
-* sane locales: (make sure there is _no_ locale defined in /etc/environment and /etc/default/locale)
-{{{
-   echo -n > /etc/environment
-   echo -n > /etc/default/locale
-}}}
-
-* make debconf the same on every host: - dialog, - high
-{{{
-    apt-get install --no-install-recommends dialog &&
+    apt-get install --no-install-recommends ssh vim &&
+    echo -n > /etc/environment &&
+    echo -n > /etc/default/locale &&
+    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
 }}}