]> piware.de Git - bin.git/blob - postinst-setup
postinst-setup: do not trash shadow group
[bin.git] / postinst-setup
1 #!/bin/sh -e
2
3 # move backup to /var
4 if [ -d /home/martin/backup ] && [ ! -d /var/backups/martin ]; then
5     cp -a /home/martin/backup /var/backups/martin
6     rm -rf /home/martin/backup
7 fi
8
9 # install already shipped debs
10 UBUNTU_CD="/home/martin/download/ubuntu/`lsb_release -c`-alternate-`dpkg --print-architecture`.iso"
11 if [ -r "$UBUNTU_CD" ]; then
12     mount -o loop "$UBUNTU_CD" /cdrom
13     apt-cdrom -m add
14 fi
15 DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential fakeroot devscripts postfix openssh-server bzr python-paramiko 
16
17 # root's ssh stuff
18 if [ ! -d /root/.ssh ] && [ -d /home/martin/.ssh ]; then
19     mkdir -p /root/.ssh
20     chmod 700 /root/.ssh
21     cp /home/martin/.ssh/id_dsa* /home/martin/.ssh/known_hosts /home/martin/.ssh/config /root/.ssh/
22 fi
23
24 # restore /etc bzr branch, rescue the files we do not want to restore
25 # completely
26 cd /etc
27 if [ ! -d /etc/.bzr ]; then
28     for i in passwd group shadow fstab; do
29         [ -e $i.originst ] || cp $i $i.originst
30     done
31     bzr get sftp://martin@piware.de/home/martin/backup/`hostname`-etc /backup-etc
32     cp -av /backup-etc/* /etc/
33     cp -av /backup-etc/.bzr/ /etc/
34     rm -rf /backup-etc
35     chmod 600 /etc/ssh/ssh_*_key
36
37     # only restore dchroot part into fstab
38     grep -A 200 "^# dchroots" fstab >> fstab.originst || true
39     mv fstab.originst fstab
40
41     # only restore the human users from passwd/group
42     for i in passwd group; do
43         perl -naF: -e 'print if $F[2] > 1000 && $F[2] < 60000' $i >> $i.originst
44         mv $i.originst $i
45     done
46
47     # only restore some passwords from shadow
48     egrep 'martin|netti|joe' shadow >> shadow.originst
49     mv shadow.originst shadow
50     chown root:shadow shadow
51     chmod 640 shadow
52 fi
53
54 # update postfix for new configuration
55 newaliases
56 /etc/init.d/postfix restart
57
58 # copy apt cache
59 if [ -d /home/aptcache ]; then
60     find /home/aptcache/ -name "*.deb" -exec cp '{}' /var/cache/apt/archives/ \;
61     rm -rf /home/aptcache
62 fi
63
64 # other setup
65 dpkg -i /home/martin/download/libdvdcss2_*deb || true
66 locale-gen ru_RU ru_RU.UTF-8
67
68 # remove packages that we do not need
69 killall apt-get || true # cronjob goo
70 apt-get purge -y --auto-remove hplip brltty bluez-cups gnome-accessibility-themes gnome-mag gnome-orca onboard tomboy ttf-arabeyes ttf-arphic-uming ttf-baekmuk ttf-gentium ttf-kochi-gothic ttf-kochi-mincho ttf-lao ttf-malayalam-fonts ttf-mgopen ttf-thai-tlwg || true
71
72 rm -f /etc/rcS.d/*pcmcia* /etc/rcS.d/*ppp*
73
74 # install packages from network sources
75 killall apt-get || true
76 apt-get update -o Acquire::Http::No-Cache=true
77
78 DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes vim bzrtools bzr-svn patchutils offlineimap wipe diffstat gtimelog jigdo-file libtool devhelp python-doc manpages-dev gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad gstreamer0.10-plugins-bad-multiverse gstreamer0.10-plugins-ugly-multiverse gstreamer0.10-ffmpeg weechat weechat-plugins weechat-scripts dpatch wdiff grep-dctrl ccache subversion listadmin quilt python-dev cryptsetup mutt editmoin lintian python-gtk2-doc fakechroot ubuntu-dev-tools dput gnome-blog
79 apt-get -y build-dep postgresql-8.3 gnome-volume-manager hal cupsys apport jockey
80
81 if [ `hostname` = donald ]; then
82     DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes dchroot rsnapshot dhcp3-server apache2 ia32-libs easytag texlive latex-beamer texlive-lang-german fakechroot sane-utils imagemagick pngquant pdfjam
83 fi
84
85 umount /cdrom || true
86
87 # other setup
88 if [ `hostname` = "donald" ]; then
89     [ -e /mirror ] || ln -s /home/ubuntu-mirror /mirror
90     ln -s /mirror /var/www/mirror
91     ifdown eth1
92     ifup eth1
93     /etc/init.d/dhcp3-server restart
94     patch /usr/bin/gtimelog ~martin/archiv/gtimelog.wednesday.patch
95
96     # crontabs
97     crontab -u martin - <<EOF
98 # m h  dom mon dow   command
99 05 * * * * \$HOME/bin/backup >/dev/null
100 EOF
101 fi