Hide failure library's warnings.

This commit is contained in:
nekral-guest
2011-07-16 17:36:18 +00:00
parent e74300f9f3
commit ec9d756fc7
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ change_config
echo -n "Change passwords (chpasswd -e)..."
echo 'nobody:test
lp:test2' | LD_PRELOAD=../../../common/time_0.so chpasswd -e
lp:test2' | LD_PRELOAD=../../../common/time_0.so chpasswd -e 2>/dev/null
echo "OK"
echo -n "Check the passwd file..."

View File

@@ -17,7 +17,7 @@ trap 'log_status "$0" "FAILURE"; restore_config' 0
change_config
echo -n "Change the user's password (usermod -p foopass foo)..."
LD_PRELOAD=../../../common/time_0.so usermod -p foopass foo
LD_PRELOAD=../../../common/time_0.so usermod -p foopass foo 2>/dev/null
echo "OK"
echo -n "Check the passwd file..."

View File

@@ -17,7 +17,7 @@ trap 'log_status "$0" "FAILURE"; restore_config' 0
change_config
echo -n "Change the user's password (usermod -f 12 foo)..."
LD_PRELOAD=../../../common/time_0.so usermod -f 12 foo
LD_PRELOAD=../../../common/time_0.so usermod -f 12 foo 2>/dev/null
echo "OK"
echo -n "Check the passwd file..."