4
0

comms.sh 370 B

123456789101112131415
  1. #!/bin/bash
  2. # LGSM comms.sh function
  3. # Author: Daniel Gibbs
  4. # Website: https://gameservermanagers.com
  5. lgsm_version="140516"
  6. # Description: Overall function for managing notifications.
  7. if [ "${emailnotification}" == "on" ]||[ -n "${email}" ]; then
  8. comms_email.sh
  9. fi
  10. if [ "${pushbulletnotification}" == "on" ]||[ -n "${pushbullettoken}" ]; then
  11. comms_pushbullet.sh
  12. fi