X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fdsa-wiki.git;a=blobdiff_plain;f=input%2Fhowto%2Fnew-machine.creole;h=cd5bbe8b54f33948c6a9af5899a08dc2686b0309;hp=bb05c5bf5283db1bf50fad4dca24b53356abf402;hb=4560c210de7352f480b37ab77d1467de229b75b3;hpb=0a4a36161706310957c77d75a691586945edd46c diff --git a/input/howto/new-machine.creole b/input/howto/new-machine.creole index bb05c5b..cd5bbe8 100644 --- a/input/howto/new-machine.creole +++ b/input/howto/new-machine.creole @@ -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 }}}