e72648d222a227905fe0099def4282f7fb99d2f6
[mirror/dsa-wiki.git] / input / howto / new-machine.creole
1 == setup/integrate a new machine ==
2
3 Note: this has recently been changed to rely more on [[puppet|howto/puppet-setup]].  If stuff breaks fix it.
4
5
6 * install ssh if it isn't there already
7 {{{
8     apt-get install --no-install-recommends ssh
9 }}}
10
11 * sane editor
12 {{{
13     apt-get install --no-install-recommends vim
14 }}}
15
16 * sane locales: (make sure there is _no_ locale defined in /etc/environment and /etc/default/locale)
17 {{{
18    echo -n > /etc/environment
19    echo -n > /etc/default/locale
20 }}}
21
22 * make debconf the same on every host: - dialog, - high
23 {{{
24     apt-get install --no-install-recommends dialog &&
25     echo "debconf debconf/priority        select high" | debconf-set-selections &&
26     echo "debconf debconf/frontend        select Dialog" | debconf-set-selections
27 }}}
28
29 * unless we want to keep it:
30 {{{
31     dpkg -l postfix | grep '^ii  postfix' && (dpkg --purge postfix && rm /etc/aliases)
32 }}}
33
34 * on draghi, add the host to the ldap using ud-host.  Set the ssh key and the IP Address attributes.
35
36 * run generate, or wait until cron runs it for you.  Update DNS.
37 {{{
38     : :: draghi :: && sudo -u sshdist ud-generate && sudo -H ud-replicate && sudo -H puppetd -t
39     : :: orff :: && sudo -H ud-replicate
40 }}}
41
42 * setup [[puppet|howto/puppet-setup]]  (run the puppet client two or three times until things converge.)
43
44 * on the host, run ud-replicate
45 {{{
46     echo draghi.debian.org,draghi,db.debian.org,db,82.195.75.106,::ffff:82.195.75.106,2001:41b8:202:deb:1a1a:0:52c3:4b6a ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAy1mAS0xIOZH9OrJZf1Wv9qYORv5Z5fmpF0o8Y4IMdS+ZzTjN1Sl8M77jaFTJbumJNs+n2CMcX8CoMemQEPBoRe20a5t3dExPQ3c7FNU0z+WIVFbu/oTTkAWGp5gCDwF3pg2QxUjqYc0X4jpv6pkisyvisij6V/VJ5G1hsIMuKqrCKYyyyiJJytfzSfRrBx2QvB5ZWQxhYeSYDoLDvuF31qUy4TLZ/HR3qZQ1cBrP9dCh5d+GQxdY9LuO6zjlnSyU64GHkyjYt3p03AKG4plD7WHX01bD0DQQ/NOFVwFhOZ63mePyridPuqBMFW39jBf4jSsewV95RE5VbY04+MY4XQ== root@draghi >> /etc/ssh/ssh_known_hosts &&
47     ud-replicate
48 }}}
49
50 * check if it worked:
51 {{{
52     id weasel
53 }}}
54
55 * install debian.org which brings you shells and much other fun
56 {{{
57     apt-get install -y debian.org debian.org-recommended
58 }}}
59
60 * run puppet a couple times
61 {{{
62     puppet agent -t; puppet agent -t; puppet agent -t; puppet agent -t
63 }}}
64
65 * try to login using your user and ssh key.  you should get a homedir.
66
67 * try to become root using sudo.
68
69 * make ca-certificates sane:  (choose to *not* trust new certs, and we only want the spi cert activated)
70 {{{
71     echo "ca-certificates ca-certificates/trust_new_crts  select no" | debconf-set-selections
72     sed -i -e 's/^[^#!].*/!&/; s#^!spi-inc.org/spi-cacert-2008.crt#spi-inc.org/spi-cacert-2008.crt#' /etc/ca-certificates.conf
73     dpkg-reconfigure ca-certificates
74 }}}
75
76 * Add debian-admin@debian.org to root in /etc/aliases
77 {{{
78   if ! egrep '^root:' /etc/aliases > /dev/null; then
79     echo "root: debian-admin@debian.org" >> /etc/aliases
80   elif ! egrep '^root:.*debian-admin@debian.org' /etc/aliases > /dev/null; then
81     sed -i -e 's/^root: .*/&, debian-admin@debian.org/' /etc/aliases
82   fi
83   newaliases
84 }}}
85
86 * install samhain and get puppet to configure it
87 {{{
88   apt-get install -y samhain &&
89   ( puppet agent -t || true ) &&
90   service samhain stop &&
91   rm /var/state/samhain/samhain_file &&
92   samhain --foreground -t init -p none -s none -l none -m none &&
93   service samhain start
94 }}}
95
96 * if it is a HP Proliant, or has other management fu, read [[howto/ilo-https]]
97
98 * edit dedication into in $DSA-PUPPET/modules/debian-org/misc/local.yaml
99
100 * Add host to smarthost machines in $DSA-PUPPET/modules/debian-org/misc/local.yaml (if so desired).  Set MX in ud-ldap.
101
102 * add to nagios
103
104 -- weasel, Wed, 04 Jun 2008 20:52:56 +0200