]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/oldcore/179/update.sh
Merge branch 'master' into next
[people/pmueller/ipfire-2.x.git] / config / rootfiles / oldcore / 179 / update.sh
CommitLineData
46e91ccc
MT
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) 2023 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
9f1636bf
MT
27migrate_extrahd() {
28 local dev
29 local fs
30 local mp
31 local rest
32
33 while IFS=';' read -r dev fs mp rest; do
34 # Make sure mountpoint it set (so that we won't delete
35 # everything in /etc/fstab if there was an empty line).
36 if [ -z "${mp}" ]; then
37 continue
38 fi
39
40 # Remove the mountpoint from /etc/fstab
41 sed "/[[:blank:]]${mp//\//\\\/}[[:blank:]]/d" -i /etc/fstab
42 done < /var/ipfire/extrahd/devices
43}
44
806cc1ff 45core=179
46e91ccc
MT
46
47# Remove old core updates from pakfire cache to save space...
48for (( i=1; i<=$core; i++ )); do
49 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
50done
51
52# Stop services
959497f9
MT
53/usr/local/bin/openvpnctrl -k
54/usr/local/bin/openvpnctrl -kn2n
46e91ccc
MT
55
56# Extract files
57extract_files
58
59# Remove files
1eac1190
MT
60rm -rvf \
61 /usr/lib/pppd/2.4.9
46e91ccc 62
bde5bcaf
MT
63# Remove dropped sox addon
64rm -vf \
65 /opt/pakfire/db/installed/meta-sox \
66 /opt/pakfire/db/meta/meta-sox \
67 /opt/pakfire/db/rootfiles/sox \
68 /usr/bin/play \
69 /usr/bin/rec \
70 /usr/bin/sox \
71 /usr/bin/soxi \
72 /usr/lib/libsox.so.3 \
73 /usr/lib/libsox.so.3.0.0
74
46e91ccc
MT
75# update linker config
76ldconfig
77
78# Update Language cache
79/usr/local/bin/update-lang-cache
80
81# Filesytem cleanup
82/usr/local/bin/filesystem-cleanup
83
9f1636bf
MT
84# Migrate ExtraHD
85migrate_extrahd
86
46e91ccc 87# Start services
a6937c22 88/etc/init.d/udev restart
fb7869fe
PM
89if [ -f /var/ipfire/proxy/enable ]; then
90 /etc/init.d/squid restart
91fi
92if grep -q "ENABLED=on" /var/ipfire/ovpn/settings; then
93 /usr/local/bin/openvpnctrl -s
fb7869fe 94fi
121652cf 95/usr/local/bin/openvpnctrl -sn2n
46e91ccc
MT
96
97# This update needs a reboot...
872619f5 98touch /var/run/need_reboot
46e91ccc
MT
99
100# Finish
101/etc/init.d/fireinfo start
102sendprofile
103
104# Update grub config to display new core version
105if [ -e /boot/grub/grub.cfg ]; then
106 grub-mkconfig -o /boot/grub/grub.cfg
107fi
108
109sync
110
111# Don't report the exitcode last command
112exit 0