From 7330c59f3658faa2d6648db9a99c1d60a572b8eb Mon Sep 17 00:00:00 2001 From: xiaodongwang Date: Tue, 9 Dec 2014 15:36:57 -0800 Subject: [PATCH] add debug message to investigate install locking Change-Id: I89240199751d5408b60ff12f71e2cd4383dde181 Partial-Bug: 1400924 --- install/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/install.sh b/install/install.sh index de67d6df..ee78c16c 100755 --- a/install/install.sh +++ b/install/install.sh @@ -13,10 +13,10 @@ if [ -f $LOCKFILE ]; then LOCKED_PID=$(cat $LOCKFILE | head -n 1) ps -p $LOCKED_PID &> /dev/null if [[ "$?" != "0" ]]; then - echo "the progress of pid $LOCKED_PID does not exist" + echo "the progress of pid $LOCKED_PID does not exist: `ps -p $LOCKED_PID`" rm -f $LOCKFILE else - echo "the progress of pid $LOCKED_PID is running" + echo "the progress of pid $LOCKED_PID is running: `ps -p $LOCKED_PID`" exit 1 fi else