]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/rootfiles/oldcore/179/update.sh
Merge branch 'master' into next
[people/pmueller/ipfire-2.x.git] / config / rootfiles / oldcore / 179 / 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) 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
27 migrate_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
45 core=179
46
47 # Remove old core updates from pakfire cache to save space...
48 for (( i=1; i<=$core; i++ )); do
49 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
50 done
51
52 # Stop services
53 /usr/local/bin/openvpnctrl -k
54 /usr/local/bin/openvpnctrl -kn2n
55
56 # Extract files
57 extract_files
58
59 # Remove files
60 rm -rvf \
61 /usr/lib/pppd/2.4.9
62
63 # Remove dropped sox addon
64 rm -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
75 # update linker config
76 ldconfig
77
78 # Update Language cache
79 /usr/local/bin/update-lang-cache
80
81 # Filesytem cleanup
82 /usr/local/bin/filesystem-cleanup
83
84 # Migrate ExtraHD
85 migrate_extrahd
86
87 # Start services
88 /etc/init.d/udev restart
89 if [ -f /var/ipfire/proxy/enable ]; then
90 /etc/init.d/squid restart
91 fi
92 if grep -q "ENABLED=on" /var/ipfire/ovpn/settings; then
93 /usr/local/bin/openvpnctrl -s
94 fi
95 /usr/local/bin/openvpnctrl -sn2n
96
97 # This update needs a reboot...
98 touch /var/run/need_reboot
99
100 # Finish
101 /etc/init.d/fireinfo start
102 sendprofile
103
104 # Update grub config to display new core version
105 if [ -e /boot/grub/grub.cfg ]; then
106 grub-mkconfig -o /boot/grub/grub.cfg
107 fi
108
109 sync
110
111 # Don't report the exitcode last command
112 exit 0