1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#!/bin/sh
set -e
cd $(dirname $0)
. ../../common/config.sh
. ../../common/log.sh
log_start "$0" "Running commands (check working directory): su -l myuser -- -c pwd"
save_config
# restore the files on exit
trap 'log_status "$0" "FAILURE"; restore_config' 0
change_config
echo "/bin/su -l myuser -- -c pwd> tmp/out 2> tmp/err"
/bin/su -l myuser -- -c pwd> tmp/out 2> tmp/err
echo -n "Checking tmp/out..."
case "$(cat tmp/out)" in
/home)
echo "OK"
;;
*)
echo "FAIL"
echo "working directory: '$(cat tmp/out)' instead of '/home'"
rm -f tmp/out
false
;;
esac
rm -f tmp/out
echo -n "Checking tmp/err..."
[ "$(wc -c tmp/err)" = "0 tmp/err" ] || false
rm -f tmp/err
echo "OK"
log_status "$0" "SUCCESS"
restore_config
trap '' 0
|