]> git.ipfire.org Git - ipfire-2.x.git/blob - config/rootfiles/oldcore/96/update.sh
Merge remote-tracking branch 'origin/master' into next
[ipfire-2.x.git] / config / rootfiles / oldcore / 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 /usr/local/bin/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 -rf "/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 # Remove Ramdisk entry from fstab
62 sed -i -e "s|^none\s/var/log/rrd.*||g" /etc/fstab
63
64 # Keep (almost) old ramdisk behaviour
65 if [ ! -e "/etc/sysconfig/ramdisk" ]; then
66 echo "RAMDISK_MODE=2" > /etc/sysconfig/ramdisk
67 fi
68
69 if [ -L "/var/spool/cron" ]; then
70 rm -f /var/spool/cron
71 mv /var/log/rrd/cron /var/spool/cron
72 chown cron:cron /var/spool/cron
73
74 # Add new crontab entries
75 sed -i /var/spool/cron/root.orig -e "/tmpfs backup/d"
76 grep -q "collectd backup" /var/spool/cron/root.orig || cat <<EOF >> /var/spool/cron/root.orig
77 # Backup ramdisks if necessary
78 %nightly,random * 23-4 /etc/init.d/collectd backup &>/dev/null
79 %nightly,random * 23-4 /etc/init.d/vnstat backup &>/dev/null
80 EOF
81 fcrontab -z
82 fi
83
84 # Start services
85 /etc/init.d/collectd start
86 /etc/init.d/vnstat start
87 /etc/init.d/fcron start
88 /etc/init.d/dnsmasq restart
89 /usr/local/bin/qosctrl start
90
91 # Disable loading of cryptodev
92 sed -e "s/^cryptodev/# &/g" -i /etc/sysconfig/modules
93
94 # This update need a reboot...
95 #touch /var/run/need_reboot
96
97 # Finish
98 /etc/init.d/fireinfo start
99 sendprofile
100 # Update grub config to display new core version
101 if [ -e /boot/grub/grub.cfg ]; then
102 grub-mkconfig -o /boot/grub/grub.cfg
103 fi
104 sync
105
106 # Don't report the exitcode last command
107 exit 0