Manually install ud-ldap on new hosts
[mirror/dsa-wiki.git] / input / howto / new-machine.creole
1 = how to add 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 * some initial stuff:
7 {{{
8     apt-get install --no-install-recommends ssh vim &&
9     echo -n > /etc/environment &&
10     echo -n > /etc/default/locale &&
11     apt-get install --no-install-recommends dialog &&
12     echo "debconf debconf/priority        select high" | debconf-set-selections &&
13     echo "debconf debconf/frontend        select Dialog" | debconf-set-selections
14 }}}
15
16 * unless we want to keep it:
17 {{{
18     dpkg -l postfix | grep '^ii  postfix' && (dpkg --purge postfix && rm /etc/aliases)
19 }}}
20
21 * on draghi, add the host to the ldap using ud-host.  Set the ssh key and the IP Address attributes.
22
23 * run generate, or wait until cron runs it for you.  Update DNS.
24 {{{
25     : :: draghi :: && sudo -u sshdist ud-generate && sudo -H ud-replicate && sudo -H puppetd --no-daemonize --onetime
26     : :: denis :: && sudo -H ud-replicate
27 }}}
28
29 * setup [[puppet|howto/puppet-setup]]  (run the puppet client two or three times until things converge.)
30
31 * on the host, run ud-replicate and check if it worked
32 {{{
33     apt-get install -y --no-install-recommends userdir-ldap &&
34     ud-replicate &&
35     id weasel
36 }}}
37
38 * install debian.org which brings you shells and much other fun
39 {{{
40     apt-get install -y debian.org debian.org-recommended
41 }}}
42
43 * run puppet a couple times
44 {{{
45     puppet agent --no-daemonize --onetime; puppet agent --no-daemonize --onetime; puppet agent --no-daemonize --onetime; puppet agent --no-daemonize --onetime
46 }}}
47
48 * install security updates etc.
49 {{{
50     apt-get update && apt-get dist-upgrade && apt-get clean
51 }}}
52
53 * try to login using your user and ssh key.  you should get a homedir.
54
55 * try to become root using sudo.
56
57 * make ca-certificates sane:  (choose to *not* trust new certs, and we only want the spi cert activated)
58 {{{
59     echo "ca-certificates ca-certificates/trust_new_crts  select no" | debconf-set-selections
60     sed -i -e 's/^[^#!].*/!&/; s#^!spi-inc.org/spi-cacert-2008.crt#spi-inc.org/spi-cacert-2008.crt#' /etc/ca-certificates.conf
61     dpkg-reconfigure ca-certificates
62 }}}
63
64 * Add debian-admin@debian.org to root in /etc/aliases
65 {{{
66   if ! egrep '^root:' /etc/aliases > /dev/null; then
67     echo "root: debian-admin@debian.org" >> /etc/aliases
68   elif ! egrep '^root:.*debian-admin@debian.org' /etc/aliases > /dev/null; then
69     sed -i -e 's/^root: .*/&, debian-admin@debian.org/' /etc/aliases
70   fi
71   newaliases
72 }}}
73
74 * install samhain and get puppet to configure it
75 {{{
76   apt-get install -y samhain &&
77   ( puppet agent --no-daemonize --onetime || true ) &&
78   service samhain stop &&
79   rm /var/state/samhain/samhain_file &&
80   samhain --foreground -t init -p none -s none -l none -m none &&
81   service samhain start
82 }}}
83
84 * if it is a HP Proliant, or has other management fu, read [[howto/ilo-https]]
85
86 * edit dedication into in $DSA-PUPPET/modules/debian-org/misc/local.yaml
87
88 * add to nagios
89
90 -- weasel, Wed, 04 Jun 2008 20:52:56 +0200