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, core45 has been updated via 1f54a44d6e07ebf986c45bb470abd809e0b3bb9d (commit) from c7bfbdc2ef1c29d357c5d0def038637b8c9c7387 (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 1f54a44d6e07ebf986c45bb470abd809e0b3bb9d Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Feb 26 22:43:42 2011 +0100
Fix core updater 45-48 to remove only old core updates from cache.
Conflicts:
config/rootfiles/core/46/update.sh config/rootfiles/core/47/update.sh config/rootfiles/core/48/update.sh
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/45/update.sh | 9 +++++++-- 1 files changed, 7 insertions(+), 2 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
hooks/post-receive -- IPFire 2.x development tree