This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via f625c4207e62747cbfe2fd09fd0cf0851b131749 (commit) via 635e22e0241ee187d473df8a4d09e1d58c465a29 (commit) from 3c2b8c6cd99466b8e4d101b48a2d56e7296b3139 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit f625c4207e62747cbfe2fd09fd0cf0851b131749 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Fri Oct 29 13:55:43 2021 +0200
core161: reconnect only if ppp is used
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
commit 635e22e0241ee187d473df8a4d09e1d58c465a29 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Fri Oct 29 12:02:24 2021 +0200
core161: fix typo in path
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/161/update.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/161/update.sh b/config/rootfiles/core/161/update.sh index 410381f6b..787246f6b 100644 --- a/config/rootfiles/core/161/update.sh +++ b/config/rootfiles/core/161/update.sh @@ -119,9 +119,13 @@ ldconfig # Filesytem cleanup /usr/local/bin/filesystem-cleanup
-# restart firewall and reconnect +# restart firewall /etc/init.d/firewall restart -/usr/lical/bin/connscheduler reconnect + +# reconnect if red is ppp0 +if [ $(</var/ipfire/red/iface) = "ppp0" ]; then + /usr/local/bin/connscheduler reconnect +fi
# Start services if grep -q "ENABLED=on" /var/ipfire/vpn/settings; then @@ -133,9 +137,9 @@ rm -rf \ /usr/lib/pppd/2.4.8/
# Generate new qos.sh -/usr/lical/bin/qosctrl stop -/usr/lical/bin/qosctrl generate -/usr/lical/bin/qosctrl start +/usr/local/bin/qosctrl stop +/usr/local/bin/qosctrl generate +/usr/local/bin/qosctrl start
# remove lm_sensor config after collectd was started # to reserch sensors at next boot with updated kernel
hooks/post-receive -- IPFire 2.x development tree