Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #! /bin/bash
- case "$(pidof AccountingServerEmulator | wc -w)" in
- 0) echo "Restarting AccountingServer: $(date)" >> /home/teamspeak/auto_log.txt
- /home/teamspeak/AccountingServerEmulator &
- ;;
- 1) # all ok
- ;;
- *) echo "Removed double AccountingServer: $(date)" >> /home/teamspeak/auto_log.txt
- kill $(pidof AccountingServerEmulator | awk '{print $1}')
- ;;
- esac
Advertisement
Add Comment
Please, Sign In to add comment