]> git.ipfire.org Git - people/meitelwein/ipfire-2.x.git/blob - config/rootfiles/core/96/update.sh
b860207b5e499a8a121dfbb45763d629238a092a
[people/meitelwein/ipfire-2.x.git] / config / rootfiles / core / 96 / 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) 2015 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 # Remove old core updates from pakfire cache to save space...
28 core=96
29 for (( i=1; i<=$core; i++ ))
30 do
31 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
32 done
33
34 # Stop services
35 /etc/init.d/fcron stop
36 /etc/init.d/collectd stop
37 qosctrl stop
38
39 # Backup RRDs
40 if [ -d "/var/log/rrd.bak" ]; then
41 # Umount ramdisk
42 umount -l "/var/log/rrd"
43 rm -f "/var/log/rrd"
44
45 mv "/var/log/rrd.bak/vnstat" "/var/log/vnstat"
46 mv "/var/log/rrd.bak" "/var/log/rrd"
47 fi
48
49 # Remove old scripts
50 rm -f /etc/rc.d/init.d/tmpfs \
51 /etc/rc.d/rc0.d/K85tmpfs \
52 /etc/rc.d/rc3.d/S01tmpfs \
53 /etc/rc.d/rc6.d/K85tmpfs
54
55 # Extract files
56 extract_files
57
58 # Update Language cache
59 # /usr/local/bin/update-lang-cache
60
61 # Keep (almost) old ramdisk behaviour
62 if [ ! -e "/etc/sysconfig/ramdisk" ]; then
63 echo "RAMDISK_MODE=2" > /etc/sysconfig/ramdisk
64 fi
65
66 if [ -L "/var/spool/cron" ]; then
67 rm -f /var/spool/cron
68 mv /var/log/rrd/cron /var/spool/cron
69 chown cron:cron /var/spool/cron
70 fi
71
72 # Start services
73 /etc/init.d/collectd start
74 /etc/init.d/vnstat start
75 /etc/init.d/fcron start
76 /etc/init.d/dnsmasq restart
77 qosctrl start
78
79 # Disable loading of cryptodev
80 sed -e "s/^cryptodev/# &/g" -i /etc/sysconfig/modules
81
82 # This update need a reboot...
83 #touch /var/run/need_reboot
84
85 # Finish
86 /etc/init.d/fireinfo start
87 sendprofile
88 # Update grub config to display new core version
89 if [ -e /boot/grub/grub.cfg ]; then
90 grub-mkconfig -o /boot/grub/grub.cfg
91 fi
92 sync
93
94 # Don't report the exitcode last command
95 exit 0