]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/test/update.sh
Sync after swap creation.
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / test / update.sh
CommitLineData
b0ab1b09
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 #
8# the Free Software Foundation; either version 3 of the License, or #
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) 2010 IPFire-Team <info@ipfire.org>. #
21# #
22############################################################################
23#
24. /opt/pakfire/lib/functions.sh
25/usr/local/bin/backupctrl exclude >/dev/null 2>&1
26#
769c84ce 27KVER="2.6.32.21"
b0ab1b09
AF
28MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
29# Nur den letzten Parameter verwenden
30echo $MOUNT > /dev/null
31MOUNT=$_
32if [ ! $MOUNT == "rw" ]; then
33 MOUNT="ro"
34fi
dcc9dcbd
AF
35
36
b0ab1b09
AF
37#
38# check if we the backup file already exist
39if [ -e /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 ]; then
40 echo Moving backup to backup-old ...
41 mv -f /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
42 /var/ipfire/backup/core-upgrade_$KVER-old.tar.bz2
43fi
44echo First we made a backup of all files that was inside of the
45echo update archive. This may take a while ...
46# Add some files that are not in the package to backup
47echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
48echo boot >> /opt/pakfire/tmp/ROOTFILES
49echo etc/mkinitcpio.conf >> /opt/pakfire/tmp/ROOTFILES
50echo etc/mkinitcpio.conf.org >> /opt/pakfire/tmp/ROOTFILES
51echo etc/mkinitcpio.d >> /opt/pakfire/tmp/ROOTFILES
52echo lib/initcpio >> /opt/pakfire/tmp/ROOTFILES
53echo sbin/mkinitcpio >> /opt/pakfire/tmp/ROOTFILES
4a2a1232 54echo usr/bin/iw >> /opt/pakfire/tmp/ROOTFILES
b0ab1b09
AF
55
56# Backup the files
57tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
58 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
59
60echo
61echo Update Kernel to $KVER ...
62# Remove old kernel, configs, initrd, modules ...
63#
64rm -rf /boot/System.map-*
65rm -rf /boot/config-*
66rm -rf /boot/ipfirerd-*
67rm -rf /boot/vmlinuz-*
68rm -rf /lib/modules/*-ipfire
69# Remove mkinitcpio
70rm -rf /etc/mkinitcpio.*
71rm -rf /lib/initcpio
72rm -rf /sbin/mkinitcpio
4a2a1232
AF
73# Remove old iw (new is in usr/sbin)
74rm -rf /usr/bin/iw
b0ab1b09
AF
75#
76# Backup grub.conf
77#
78cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
79#
80# Unpack the updated files
81#
82echo
83echo Unpack the updated files ...
84#
85tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
86 --no-overwrite-dir
dcc9dcbd 87
f4729b4f
AF
88#
89# Stop services to save memory
90#
91/etc/init.d/snort stop
92/etc/init.d/squid stop
93
dcc9dcbd
AF
94# Convert /etc/fstab entries to UUID ...
95#
96echo Convert fstab entries to UUID ...
97ROOT=`mount | grep " / " | cut -d" " -f1`
98BOOT=`mount | grep " /boot " | cut -d" " -f1`
99VAR=`mount | grep " /var " | cut -d" " -f1`
100SWAP=`grep "/dev/" /proc/swaps | cut -d" " -f1`
101#
102
103if [ ! -z $ROOT ]; then
104 ROOTUUID=`blkid -sUUID $ROOT | cut -d'"' -f2`
105 if [ ! -z $ROOTUUID ]; then
106 sed -i "s|^$ROOT|UUID=$ROOTUUID|g" /etc/fstab
107 #else
108 #to do add uuid to rootfs
109 fi
110 else
111 echo "ERROR! / not found!!!"
112fi
113
114if [ ! -z $BOOT ]; then
115 BOOTUUID=`blkid -sUUID $BOOT | cut -d'"' -f2`
116 if [ ! -z $BOOTUUID ]; then
117 sed -i "s|^$BOOT|UUID=$BOOTUUID|g" /etc/fstab
118 #else
119 #to do add uuid to bootfs
120 fi
121 else
122 echo "WARNING! /boot not found!!!"
123fi
124
125if [ ! -z $VAR ]; then
126 VARUUID=`blkid -sUUID $VAR | cut -d'"' -f2`
127 if [ ! -z $VARUUID ]; then
128 sed -i "s|^$VAR|UUID=$VARUUID|g" /etc/fstab
129 #else
130 #to do add uuid to varfs
131 fi
132 else
133 echo "WARNING! /var not found!!!"
134fi
135
136if [ ! -z $SWAP ]; then
137 SWAPUUID=`blkid -sUUID $SWAP | cut -d'"' -f2`
138 if [ ! -z $SWAPUUID ]; then
139 sed -i "s|^$SWAP|UUID=$SWAPUUID|g" /etc/fstab
f4729b4f
AF
140 else
141 # Reformat swap to add a UUID
142 swapoff -a
143 mkswap $SWAP
144 swapon -a
82adcbc0 145 sync
f4729b4f
AF
146 SWAPUUID=`blkid -sUUID $SWAP | cut -d'"' -f2`
147 if [ ! -z $SWAPUUID ]; then
148 sed -i "s|^$SWAP|UUID=$SWAPUUID|g" /etc/fstab
149 fi
dcc9dcbd
AF
150 fi
151 else
152 echo "WARNING! swap not found!!!"
153fi
154
f4729b4f
AF
155#
156# Start services
157#
158/etc/init.d/squid start
159/etc/init.d/snort start
160
b0ab1b09
AF
161#
162# Modify grub.conf
163#
164echo
165echo Update grub configuration ...
925038e3
AF
166if [ ! -z $ROOTUUID ]; then
167 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
168else
169 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
170fi
b0ab1b09
AF
171sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
172sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
173
174if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
175 echo "grub use default console ..."
176else
177 echo "grub use serial console ..."
178 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
179 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
180 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
181 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
182fi
183#
f4729b4f
AF
184# Change /dev/hd? to /dev/sda
185#
186if [ "${ROOT:0:7}" == "/dev/hd" ];then
187 sed -i -e "s|${ROOT:0:8}|/dev/sda|g" /boot/grub/grub.conf
188 sed -i -e "s|${ROOT:0:8}|/dev/sda|g" /etc/fstab
189fi
190#
b0ab1b09
AF
191# ReInstall grub
192#
193grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
194#
195# Rebuild Language
196#
f4729b4f 197perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
b0ab1b09
AF
198#
199# Delete old lm-sensor modullist to force search at next boot
200#
201rm -rf /etc/sysconfig/lm_sensors
202/usr/bin/logger -p syslog.emerg -t kernel "Upgrade finished. If you use a customized grub.cfg"
203/usr/bin/logger -p syslog.emerg -t kernel "Check it before reboot !!!"
204/usr/bin/logger -p syslog.emerg -t kernel " *** Please reboot... *** "