]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/rootfiles/core/next/update.sh
autoupdate kernel version at package install and core update scripts.
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / next / update.sh
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) 2011 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 #
27 KVER="xxxKVERxxx"
28 MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
29 # Nur den letzten Parameter verwenden
30 echo $MOUNT > /dev/null
31 MOUNT=$_
32 if [ ! $MOUNT == "rw" ]; then
33 MOUNT="ro"
34 fi
35
36
37 #
38 # check if we the backup file already exist
39 if [ -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
43 fi
44 echo First we made a backup of all files that was inside of the
45 echo update archive. This may take a while ...
46 # Add some files that are not in the package to backup
47 echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
48 echo boot >> /opt/pakfire/tmp/ROOTFILES
49
50 # Backup the files
51 tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
52 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
53
54 echo
55 echo Update Kernel to $KVER ...
56 # Remove old kernel, configs, initrd, modules ...
57 #
58 rm -rf /boot/System.map-*
59 rm -rf /boot/config-*
60 rm -rf /boot/ipfirerd-*
61 rm -rf /boot/vmlinuz-*
62 rm -rf /lib/modules/*-ipfire
63 #
64 # Backup grub.conf
65 #
66 cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
67
68 #
69 # Stop services to save memory
70 #
71 /etc/init.d/snort stop
72 /etc/init.d/squid stop
73 /etc/init.d/ipsec stop
74
75 #
76 # Unpack the updated files
77 #
78 echo
79 echo Unpack the updated files ...
80 #
81 tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
82 --no-overwrite-dir
83
84 #
85 # Start services
86 #
87 /etc/init.d/squid start
88 /etc/init.d/snort start
89 if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
90 /etc/init.d/ipsec start
91 fi
92
93 #
94 # Modify grub.conf
95 #
96 echo
97 echo Update grub configuration ...
98 ROOT=`mount | grep " / " | cut -d" " -f1`
99 if [ ! -z $ROOT ]; then
100 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
101 fi
102 if [ ! -z $ROOTUUID ]; then
103 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
104 else
105 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
106 fi
107 sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
108 sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
109
110 if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
111 echo "grub use default console ..."
112 else
113 echo "grub use serial console ..."
114 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
115 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
116 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
117 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
118 fi
119 #
120 # ReInstall grub
121 #
122 grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
123 #
124 # Rebuild Language
125 #
126 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
127 #
128 # Delete old lm-sensor modullist to force search at next boot
129 #
130 rm -rf /etc/sysconfig/lm_sensors
131 ##
132 ## Change version of Pakfire.conf
133 ##
134 #OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
135 #NEWVERSION="2.9"
136 #sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
137 ##
138 ## After pakfire has ended run it again and update the lists and do upgrade
139 ##
140 #echo '#!/bin/bash' > /tmp/pak_update
141 #echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
142 #echo ' sleep 1' >> /tmp/pak_update
143 #echo 'done' >> /tmp/pak_update
144 #echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
145 #echo ' sleep 1' >> /tmp/pak_update
146 #echo 'done' >> /tmp/pak_update
147 #echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
148 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
149 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
150 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
151 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
152 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Check it before reboot !!!"' >> /tmp/pak_update
153 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 " *** Please reboot... *** "' >> /tmp/pak_update
154 #echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
155 #
156 #chmod +x /tmp/pak_update
157 #/tmp/pak_update &
158 #echo
159 #echo Please wait until pakfire has ended...
160 #echo
161 /usr/bin/logger -p syslog.emerg -t core-upgrade-next "Upgrade finished. If you use a customized grub.cfg"
162 /usr/bin/logger -p syslog.emerg -t core-upgrade-next "Check it before reboot !!!"
163 /usr/bin/logger -p syslog.emerg -t core-upgrade-next " *** Please reboot... *** "