some bugfixes in automount.sh for killing player

This commit is contained in:
Martin Selbmann 2021-09-23 01:15:43 +02:00
parent 386ddff770
commit dd4aff0992
1 changed files with 7 additions and 6 deletions

View File

@ -36,13 +36,14 @@ while true; do
echo "Terminating $playersh" echo "Terminating $playersh"
pkill $playersh pkill $playersh
echo "Done!" echo "Done!"
fi
playerstat="$(pgrep $player)" playerstat="$(pgrep $player)"
if [ -n "$playerstat" ]; then if [ -n "$playerstat" ]; then
echo "Terminating $player" echo "Terminating $player"
pkill $player pkill $player
echo "Done!" echo "Done!"
fi
fi fi
echo "Umounting $mountpoint" echo "Umounting $mountpoint"