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, core46 has been updated via e7e03ac5f3724e3ac09121293830452853f52417 (commit) via 84d2c3089cd95f27bd6acbbe3772d7ab88a923e9 (commit) from 8ee51f4dabc942597314a761801045eb503c3318 (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 e7e03ac5f3724e3ac09121293830452853f52417 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Feb 26 20:02:53 2011 +0100
Fix core updater 45-48 to remove only old core updates from cache.
Conflicts:
config/rootfiles/core/47/update.sh config/rootfiles/core/48/update.sh
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/45/update.sh | 9 +++++++-- config/rootfiles/core/46/exclude | 3 +++ config/rootfiles/core/46/update.sh | 9 +++++++-- 3 files changed, 17 insertions(+), 4 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/45/update.sh b/config/rootfiles/core/45/update.sh index 228ada4..6a76bf8 100644 --- a/config/rootfiles/core/45/update.sh +++ b/config/rootfiles/core/45/update.sh @@ -25,8 +25,13 @@ /usr/local/bin/backupctrl exclude >/dev/null 2>&1
# -# Remove core updates from pakfire cache to save space... -rm -f /var/cache/pakfire/core-upgrade-*.ipfire +# Remove old core updates from pakfire cache to save space... +core=45 +for (( i=1; i<=$core; i++ )) +do + rm -f /var/cache/pakfire/core-upgrade-$i.ipfire +done + # #Stop services echo Stopping Proxy diff --git a/config/rootfiles/core/46/exclude b/config/rootfiles/core/46/exclude index e69de29..01b7a7f 100644 --- a/config/rootfiles/core/46/exclude +++ b/config/rootfiles/core/46/exclude @@ -0,0 +1,3 @@ +etc/ssh/ssh_config +etc/ssh/sshd_config +etc/ssl/openssl.cnf diff --git a/config/rootfiles/core/46/update.sh b/config/rootfiles/core/46/update.sh index 6d2a75d..ccf6719 100644 --- a/config/rootfiles/core/46/update.sh +++ b/config/rootfiles/core/46/update.sh @@ -25,8 +25,13 @@ /usr/local/bin/backupctrl exclude >/dev/null 2>&1
# -# Remove core updates from pakfire cache to save space... -rm -f /var/cache/pakfire/core-upgrade-*.ipfire +# Remove old core updates from pakfire cache to save space... +core=46 +for (( i=1; i<=$core; i++ )) +do + rm -f /var/cache/pakfire/core-upgrade-$i.ipfire +done + # #Stop services
hooks/post-receive -- IPFire 2.x development tree