]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - config/rootfiles/core/65/update.sh
Merge branch 'thirteen' of ssh://git.ipfire.org/pub/git/ipfire-2.x into thirteen
[people/teissler/ipfire-2.x.git] / config / rootfiles / core / 65 / update.sh
CommitLineData
f0a4269b
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) 2012 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
5e307382
AF
27function add_to_backup ()
28{
29 # Add path to ROOTFILES but remove old entries to prevent double
30 # files in the tar
31 grep -v "^$1" /opt/pakfire/tmp/ROOTFILES > /opt/pakfire/tmp/ROOTFILES.tmp
32 mv /opt/pakfire/tmp/ROOTFILES.tmp /opt/pakfire/tmp/ROOTFILES
33 echo $1 >> /opt/pakfire/tmp/ROOTFILES
34}
35
f0a4269b
AF
36#
37# Remove old core updates from pakfire cache to save space...
38core=65
39for (( i=1; i<=$core; i++ ))
40do
41 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
42done
43
590bdf1b
AF
44#
45# Do some sanity checks.
46
47if [ "$(grep " xavf " /opt/pakfire/lib/functions.sh)" == "" ]; then
48 /usr/bin/logger -p syslog.emerg -t core-upgrade-$core \
49 "ERROR: this update need a newer pakfire version (core64)."
50 exit 1
51fi
52if [ ! "$(mount | grep " reiser4 (")" == "" ]; then
53 /usr/bin/logger -p syslog.emerg -t core-upgrade-$core \
54 "ERROR: cannot update because there is a reiser4 fs mounted."
55 exit 2
56fi
57
58#
f0a4269b
AF
59#
60KVER="3.2.33"
61MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
62# Nur den letzten Parameter verwenden
63echo $MOUNT > /dev/null
64MOUNT=$_
65if [ ! $MOUNT == "rw" ]; then
66 MOUNT="ro"
67fi
68
69#
70# check if we the backup file already exist
71if [ -e /var/ipfire/backup/core-upgrade_$KVER.tar.xz ]; then
72 echo Moving backup to backup-old ...
73 mv -f /var/ipfire/backup/core-upgrade_$KVER.tar.xz \
74 /var/ipfire/backup/core-upgrade_$KVER-old.tar.xz
75fi
76echo First we made a backup of all files that was inside of the
77echo update archive. This may take a while ...
78# Add some files that are not in the package to backup
5e307382
AF
79add_to_backup lib/modules
80add_to_backup etc/udev
81add_to_backup lib/udev
82add_to_backup boot
83add_to_backup etc/snort
84add_to_backup usr/lib/snort_*
85add_to_backup usr/share/zoneinfo
033d2763 86add_to_backup lib/libncurses*
f0a4269b
AF
87
88# Backup the files
89tar cJvf /var/ipfire/backup/core-upgrade_$KVER.tar.xz \
90 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' --exclude='/var/cache' > /dev/null 2>&1
91
92echo
93echo Update Kernel to $KVER ...
94#
95# Remove old kernel, configs, initrd, modules ...
96#
97rm -rf /boot/System.map-*
98rm -rf /boot/config-*
99rm -rf /boot/ipfirerd-*
100rm -rf /boot/vmlinuz-*
101rm -rf /lib/modules/*-ipfire
102#
103# Remove old udev rules.
104#
5e307382
AF
105if [ -e /etc/udev/rules.d/29-ct-server-network.rules ]; then
106 cp /etc/udev/rules.d/29-ct-server-network.rules /tmp/
107fi
f0a4269b
AF
108cp /etc/udev/rules.d/30-persistent-network.rules /tmp/
109rm -rf /etc/udev
110rm -rf /lib/udev
111mkdir -p /etc/udev/rules.d
5e307382
AF
112if [ -e /tmp/rules.d/29-ct-server-network.rules ]; then
113 mv /tmp/29-ct-server-network.rules /etc/udev/rules.d/
114fi
f0a4269b
AF
115mv /tmp/30-persistent-network.rules /etc/udev/rules.d/
116
117#
118# Backup grub.conf
119#
120cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
121
122#
123#Stop services
124/etc/init.d/snort stop
125/etc/init.d/squid stop
126/etc/init.d/ipsec stop
127
033d2763 128#Remove old snort, zoneinfo and ncurses-libs(wrong path).
f0a4269b
AF
129rm -rf /etc/snort
130rm -rf /usr/lib/snort_*
5e307382 131rm -rf /usr/share/zoneinfo
033d2763 132rm -rf /lib/libncurses*
f0a4269b
AF
133
134#
135#Extract files
136extract_files
137
138#
139# Start services
140#
141/etc/init.d/squid start
142/etc/init.d/snort start
143if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
144 /etc/init.d/ipsec start
145fi
146
147#
148# Rebuild qosscript if enabled
149#
150if [ -e /var/ipfire/qos/enable ]; then
151 /usr/local/bin/qosctrl stop
152 /usr/local/bin/qosctrl generate
153 /usr/local/bin/qosctrl start
154fi
155
156#
157# Modify grub.conf
158#
159echo
160echo Update grub configuration ...
161ROOT=`mount | grep " / " | cut -d" " -f1`
162
163if [ ! -z $ROOT ]; then
164 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
165fi
166
167if [ ! -z $ROOTUUID ]; then
168 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
169else
170 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
171fi
172sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
173sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
174
175if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
176 echo "grub use default console ..."
177else
178 echo "grub use serial console ..."
179 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
180 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
181 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
63a945c1 182 sed -i -e "s| panic=10 | console=ttyS0,115200n8 panic=10 |g" /boot/grub/grub.conf
f0a4269b
AF
183fi
184#
185# Delete old lm-sensor modullist to force search at next boot
186#
187rm -rf /etc/sysconfig/lm_sensors
188
189#
190#Update Language cache
191perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
192
193#
194# Remove meta's of packages that are now common...
195#
196rm -rf /opt/pakfire/db/*/meta-fontconfig
197rm -rf /opt/pakfire/db/*/meta-glib
198
199#
200# After pakfire has ended run it again and update the lists and do upgrade
201#
202echo '#!/bin/bash' > /tmp/pak_update
203echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
204echo ' sleep 1' >> /tmp/pak_update
205echo 'done' >> /tmp/pak_update
206echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
207echo ' sleep 1' >> /tmp/pak_update
208echo 'done' >> /tmp/pak_update
209echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
210echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
211echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
212echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
590bdf1b
AF
213echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-$core "Upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
214echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-$core "Check it before reboot !!!"' >> /tmp/pak_update
215echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-$core " *** Please reboot... *** "' >> /tmp/pak_update
f0a4269b
AF
216echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
217#
218chmod +x /tmp/pak_update
219/tmp/pak_update &
220
221sync
222
223#
224#Finish
225/etc/init.d/fireinfo start
226sendprofile
227
228echo
229echo Please wait until pakfire has ended...
230echo
231#Don't report the exitcode last command
232exit 0
233