]> git.ipfire.org Git - ipfire-2.x.git/blame - config/rootfiles/updater/update.sh
Add an emergency ramdisk with all storage drivers.
[ipfire-2.x.git] / config / rootfiles / updater / update.sh
CommitLineData
2d9ee050
AF
1#!/bin/bash
2############################################################################
3# #
4# This file is part of the IPFire Firewall. #
5# #
6# IPFire is free software; you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
4378d325 8# the Free Software Foundation; either version 3 of the License, or #
2d9ee050
AF
9# (at your option) any later version. #
10# #
11# IPFire is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with IPFire; if not, write to the Free Software #
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19# #
20# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
21# #
22############################################################################
ff753a4c 23#
4378d325
AF
24. /opt/pakfire/lib/functions.sh
25/usr/local/bin/backupctrl exclude >/dev/null 2>&1
ff753a4c 26#
4378d325
AF
27OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
28NEWVERSION="2.3"
202f35e2 29KVER="2.6.23.17"
2d9ee050
AF
30ROOT=`grep "root=" /boot/grub/grub.conf | cut -d"=" -f2 | cut -d" " -f1 | tail -n 1`
31MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
32# Nur den letzten Parameter verwenden
33echo $MOUNT > /dev/null
34MOUNT=$_
609d4fa5 35OLDKERNEL=`ls /boot/vmlinuz-*-ipfire | cut -d"-" -f2 | tail -n 1`
2d9ee050 36#
2d9ee050 37echo
609d4fa5 38echo Update IPFire $OLDVERSION to $NEWVERSION
2d9ee050 39echo
2d9ee050
AF
40#
41# check if we the backup file already exist
42if [ -e /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 ]; then
45ff5fa6
AF
43 echo Moving backup to backup-old ...
44 mv -f /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 \
45 /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION-old.tar.bz2
2d9ee050
AF
46fi
47echo First we made a backup of all files that was inside of the
48echo update archive. This may take a while ...
625cfc40
AF
49# Add issue and packfire conf to backup
50echo etc/issue >> ROOTFILES
51echo opt/pakfire/etc/pakfire.conf >> ROOTFILES
2d9ee050
AF
52tar cjvf /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 \
53 -T ROOTFILES --exclude='#*' -C / > /dev/null 2>&1
54echo
55echo Update IPfire to $NEWVERSON ...
56#
159a9efd
CS
57# Delete old collectd symlink
58#
59rm -rf /etc/rc.d/rc3.d/S20collectd
60#
2d9ee050
AF
61# Backup the old grub config
62#
63mv /boot/grub/grub.conf /boot/grub/grub-old.conf
64#
65# Unpack the updated files
66#
67echo
68echo Unpack the updated files ...
4378d325 69extract_files
2d9ee050
AF
70#
71# Modify grub.conf
609d4fa5
AF
72#
73echo
2d9ee050 74echo Update grub configuration ...
609d4fa5 75sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
2d9ee050
AF
76sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
77sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
78echo "title Old Kernel" >> /boot/grub/grub.conf
609d4fa5
AF
79echo " configfile /grub/grub-old.conf" >> /boot/grub/grub.conf
80sed -i "s|/vmlinuz-ipfire|/vmlinuz-$OLDKERNEL-ipfire|g" /boot/grub/grub-old.conf
2d9ee050 81#
edd66ab6
AF
82# Made emergency - initramdisk
83#
84cp -f /etc/mkinitcpio.conf /etc/mkinitcpio.conf.org
85sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
86mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
87cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
88#
2d9ee050
AF
89# Made initramdisk
90#
609d4fa5 91echo
2d9ee050
AF
92echo Create new Initramdisks ...
93if [ "${ROOT:0:7}" == "/dev/sd" ]; then
94 # Remove ide hook if root is on sda
95 sed -i "s| ide | |g" /etc/mkinitcpio.conf
96else
97if [ "${ROOT:0:7}" == "/dev/hd" ]; then
2e95c21c 98 # Remove pata & sata hook if root is on hda
2d9ee050 99 sed -i "s| pata | |g" /etc/mkinitcpio.conf
2e95c21c 100 sed -i "s| sata | |g" /etc/mkinitcpio.conf
2d9ee050
AF
101fi
102fi
103mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
104mkinitcpio -k $KVER-ipfire-smp -g /boot/ipfirerd-$KVER-smp.img
105#
106# Change version of Pakfire.conf
107#
108sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
609d4fa5
AF
109#
110# Create new issue
111#
30abd974 112echo IPFire v$NEWVERSION - www.ipfire.org > /etc/issue
609d4fa5
AF
113echo =================================== >> /etc/issue
114echo \\n running on \\s \\r \\m >> /etc/issue
bebcd1b3 115# Core 16 begin
609d4fa5
AF
116perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
117/etc/init.d/mISDN config
bebcd1b3 118# Core 16 end
7795e9ba
AF
119#
120# Remove obsolete packages
121#
45ff5fa6 122echo '#!/bin/bash' > /tmp/remove_obsolete_paks
7795e9ba
AF
123echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/remove_obsolete_paks
124echo ' sleep 2' >> /tmp/remove_obsolete_paks
125echo 'done' >> /tmp/remove_obsolete_paks
126echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/remove_obsolete_paks
127echo ' sleep 2' >> /tmp/remove_obsolete_paks
128echo 'done' >> /tmp/remove_obsolete_paks
45ff5fa6 129echo '/opt/pakfire/pakfire remove zaptel -y' >> /tmp/remove_obsolete_paks
02663e5e 130echo '/opt/pakfire/pakfire update --force' >> /tmp/remove_obsolete_paks
7795e9ba
AF
131echo 'echo' >> /tmp/remove_obsolete_paks
132echo 'echo Update to IPFire $NEWVERSION finished. Please reboot... ' >> /tmp/remove_obsolete_paks
133echo 'echo' >> /tmp/remove_obsolete_paks
134chmod +x /tmp/remove_obsolete_paks
135/tmp/remove_obsolete_paks &
609d4fa5 136echo
7795e9ba
AF
137echo Please wait until pakfire has ended...
138echo