Advertisement
Guest User

W4PMon

a guest
Aug 4th, 2012
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.43 KB | None | 0 0
  1. #!/bin/sh
  2. #MonUpdate
  3. #Author: Nexon
  4. #Site: http://world4play.com/    
  5.  
  6. BINARYPATH="/var/www/html/cron/mon"      
  7. USER="monupdate"
  8. cd "${BINARYPATH}"
  9. if [ ! -e monupdate.pid ]; then
  10. exit 1
  11. fi
  12. php Alchymia.php > /dev/null &
  13. if [ ! -e monupdate.pid ]; then
  14. exit 1
  15. fi
  16. php Ayra.php > /dev/null &
  17. if [ ! -e monupdate.pid ]; then
  18. exit 1
  19. fi
  20. php Creative.php > /dev/null &
  21. if [ ! -e monupdate.pid ]; then
  22. exit 1
  23. fi
  24. php DayZ.php > /dev/null &
  25. if [ ! -e monupdate.pid ]; then
  26. exit 1
  27. fi
  28. php Einbroch.php > /dev/null &
  29. if [ ! -e monupdate.pid ]; then
  30. exit 1
  31. fi
  32. php Energy.php > /dev/null &
  33. if [ ! -e monupdate.pid ]; then
  34. exit 1
  35. fi
  36. php Event.php > /dev/null &
  37. if [ ! -e monupdate.pid ]; then
  38. exit 1
  39. fi
  40. php Extreme.php > /dev/null &
  41. if [ ! -e monupdate.pid ]; then
  42. exit 1
  43. fi
  44. php Flaxon.php > /dev/null &
  45. if [ ! -e monupdate.pid ]; then
  46. exit 1
  47. fi
  48. php HackMine.php > /dev/null &
  49. if [ ! -e monupdate.pid ]; then
  50. exit 1
  51. fi
  52. php Infinity.php > /dev/null &
  53. if [ ! -e monupdate.pid ]; then
  54. exit 1
  55. fi
  56. php Leistung.php > /dev/null &
  57. if [ ! -e monupdate.pid ]; then
  58. exit 1
  59. fi
  60. php Lighthalzen.php > /dev/null &
  61. if [ ! -e monupdate.pid ]; then
  62. exit 1
  63. fi
  64. php OSS.php > /dev/null &
  65. if [ ! -e monupdate.pid ]; then
  66. exit 1
  67. fi
  68. php Paradise.php > /dev/null &
  69. if [ ! -e monupdate.pid ]; then
  70. exit 1
  71. fi
  72. php Phoenix.php > /dev/null 2&>1
  73. if [ ! -e monupdate.pid ]; then
  74. exit 1
  75. fi
  76. if [ -e monupdate.pid ]; then
  77. bash ./update
  78. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement