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, master has been updated via 618097cb60e51fed8a08abc93c1a325d61bee291 (commit) via b151637d8866d759ae369f24b80ba847625dc700 (commit) from 64dc6c92f1b61b54744812c7de7a324ff648cdf9 (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 618097cb60e51fed8a08abc93c1a325d61bee291 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Tue May 11 18:02:26 2010 +0200
Rebuild qos-script at core38 update. small fixes at core38 updater.
commit b151637d8866d759ae369f24b80ba847625dc700 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Tue May 11 15:02:09 2010 +0200
Remove openswan libs at core update.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/38/update.sh | 22 ++++++++++++++++------ 1 files changed, 16 insertions(+), 6 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/38/update.sh b/config/rootfiles/core/38/update.sh index 6702f42..d15b829 100644 --- a/config/rootfiles/core/38/update.sh +++ b/config/rootfiles/core/38/update.sh @@ -46,9 +46,8 @@ echo update archive. This may take a while ... echo lib/modules >> /opt/pakfire/tmp/ROOTFILES echo boot >> /opt/pakfire/tmp/ROOTFILES echo etc/sysconfig/lm_sensors >> /opt/pakfire/tmp/ROOTFILES -# -# Todo: add openswan libs for backup ... -# +echo usr/lib/ipsec >> /opt/pakfire/tmp/ROOTFILES +echo usr/libexec/ipsec >> /opt/pakfire/tmp/ROOTFILES tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \ -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1 echo @@ -61,9 +60,12 @@ rm -rf /boot/ipfirerd-* rm -rf /boot/vmlinuz-* # Don't remove old xen modules. Kernel may stored outside. rm -rf /lib/modules/*-ipfire + # -# Todo: remove openswan libs ... +# remove openswan libs ... # +rm -rf /usr/lib/ipsec +rm -rf /usr/libexec/ipsec
# # Stop Sevices @@ -159,10 +161,18 @@ echo Cleaned up collectd directory from $PRECLEAN to $POSTCLEAN size. # # USB Modeswitch conf now called setup, rename ... # +if [ -e /etc/usb_modeswitch.conf ]; then mv -f /etc/usb_modeswitch.conf /etc/usb_modeswitch.setup +fi # -# -# Todo: rebuild qosscript if enabled... +# rebuild qosscript if enabled... +if [ -e /var/ipfire/qos/enable ]; then + /usr/local/bin/qosctrl stop +fi +/usr/local/bin/qosctrl generate +if [ -e /var/ipfire/qos/enable ]; then + /usr/local/bin/qosctrl start +fi # # # Todo convert ipsec.conf from open to strongswan...
hooks/post-receive -- IPFire 2.x development tree