#!/bin/bash ########################################################### # # # Released under the GNU Public License # # # # Script : ctone_on_off # # Author : David McAnally KF7FLY # # Version : .10 Beta # # Date : 8/14/03 # # About : This script en/disables courtesy tone. # # Companion script is ctone. # # The confirm script is by KC6HUR and is # # also found on the IRLP Yahoo group files. # # # ########################################################### #!/bin/bash [ -z "$SCRIPT" ] && SCRIPT=/home/irlp/scripts source $SCRIPT/common-functions.sh if [ -f "$CUSTOM/common-functions.sh" ] ; then source "$CUSTOM/common-functions.sh" fi if [ -f $LOCAL/ctone_enable ] ; then log "Disabling ctone" rm -f "$LOCAL/ctone_enable" "$SCRIPT/wavplay" "custom/ctone_off" else log "Enabling ctone" touch "$LOCAL/ctone_enable" "$SCRIPT/wavplay" "custom/ctone_on" fi exit