]> git.ipfire.org Git - people/meitelwein/ipfire-2.x.git/blame - config/rootfiles/core/96/update.sh
core96: remove rrd ramdisk entry from fstab
[people/meitelwein/ipfire-2.x.git] / config / rootfiles / core / 96 / update.sh
CommitLineData
cfac8f94
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) 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...
28core=96
29for (( i=1; i<=$core; i++ ))
30do
31 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
32done
33
34# Stop services
84c5f0d6 35/etc/init.d/fcron stop
228bec09 36/etc/init.d/collectd stop
1a781c8a 37/usr/local/bin/qosctrl stop
228bec09
MT
38
39# Backup RRDs
40if [ -d "/var/log/rrd.bak" ]; then
41 # Umount ramdisk
42 umount -l "/var/log/rrd"
ff441e4d 43 rm -rf "/var/log/rrd"
228bec09
MT
44
45 mv "/var/log/rrd.bak/vnstat" "/var/log/vnstat"
46 mv "/var/log/rrd.bak" "/var/log/rrd"
47fi
48
49# Remove old scripts
50rm -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
cfac8f94
AF
54
55# Extract files
56extract_files
57
58# Update Language cache
32dd84e8 59/usr/local/bin/update-lang-cache
cfac8f94 60
c26171b4
AF
61# Remove Ramdisk entry from fstab
62sed -i -e "s|^none\s/var/log/rrd.*||g" /etc/fstab
63
228bec09
MT
64# Keep (almost) old ramdisk behaviour
65if [ ! -e "/etc/sysconfig/ramdisk" ]; then
66 echo "RAMDISK_MODE=2" > /etc/sysconfig/ramdisk
67fi
68
84c5f0d6
MT
69if [ -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
08729f79
MT
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
80EOF
81 fcrontab -z
84c5f0d6
MT
82fi
83
cfac8f94 84# Start services
228bec09
MT
85/etc/init.d/collectd start
86/etc/init.d/vnstat start
84c5f0d6 87/etc/init.d/fcron start
5a0ddc61 88/etc/init.d/dnsmasq restart
1a781c8a 89/usr/local/bin/qosctrl start
cfac8f94 90
5b2155bf
MT
91# Disable loading of cryptodev
92sed -e "s/^cryptodev/# &/g" -i /etc/sysconfig/modules
93
cfac8f94
AF
94# This update need a reboot...
95#touch /var/run/need_reboot
96
97# Finish
98/etc/init.d/fireinfo start
99sendprofile
100# Update grub config to display new core version
101if [ -e /boot/grub/grub.cfg ]; then
102 grub-mkconfig -o /boot/grub/grub.cfg
103fi
104sync
105
106# Don't report the exitcode last command
107exit 0