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 73c9f064d2fec365b9c557d28118a86546236024 (commit) from 23c6672b8c7c555b1455aebc08b51585770152da (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 73c9f064d2fec365b9c557d28118a86546236024 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Mon Sep 20 15:44:18 2010 +0200
Updater: disabled cache file for blkid.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/test/update.sh | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/test/update.sh b/config/rootfiles/core/test/update.sh index 138b2c1..bf0032b 100644 --- a/config/rootfiles/core/test/update.sh +++ b/config/rootfiles/core/test/update.sh @@ -101,7 +101,7 @@ SWAP=`grep "/dev/" /proc/swaps | cut -d" " -f1` #
if [ ! -z $ROOT ]; then - ROOTUUID=`blkid -sUUID $ROOT | cut -d'"' -f2` + ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2` if [ ! -z $ROOTUUID ]; then sed -i "s|^$ROOT|UUID=$ROOTUUID|g" /etc/fstab #else @@ -112,7 +112,7 @@ if [ ! -z $ROOT ]; then fi
if [ ! -z $BOOT ]; then - BOOTUUID=`blkid -sUUID $BOOT | cut -d'"' -f2` + BOOTUUID=`blkid -c /dev/null -sUUID $BOOT | cut -d'"' -f2` if [ ! -z $BOOTUUID ]; then sed -i "s|^$BOOT|UUID=$BOOTUUID|g" /etc/fstab #else @@ -123,7 +123,7 @@ if [ ! -z $BOOT ]; then fi
if [ ! -z $VAR ]; then - VARUUID=`blkid -sUUID $VAR | cut -d'"' -f2` + VARUUID=`blkid -c /dev/null -sUUID $VAR | cut -d'"' -f2` if [ ! -z $VARUUID ]; then sed -i "s|^$VAR|UUID=$VARUUID|g" /etc/fstab #else @@ -134,7 +134,7 @@ if [ ! -z $VAR ]; then fi
if [ ! -z $SWAP ]; then - SWAPUUID=`blkid -sUUID $SWAP | cut -d'"' -f2` + SWAPUUID=`blkid -c /dev/null -sUUID $SWAP | cut -d'"' -f2` if [ ! -z $SWAPUUID ]; then sed -i "s|^$SWAP|UUID=$SWAPUUID|g" /etc/fstab else @@ -142,8 +142,7 @@ if [ ! -z $SWAP ]; then swapoff -a mkswap $SWAP swapon -a - sync - SWAPUUID=`blkid -sUUID $SWAP | cut -d'"' -f2` + SWAPUUID=`blkid -c /dev/null -sUUID $SWAP | cut -d'"' -f2` if [ ! -z $SWAPUUID ]; then sed -i "s|^$SWAP|UUID=$SWAPUUID|g" /etc/fstab fi
hooks/post-receive -- IPFire 2.x development tree