lgsm local mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
254 B

#!/bin/bash
# LGSM core_trap.sh function
# Author: Daniel Gibbs
# Website: https://gameservermanagers.com
# Description: handles ctrl-C trap to give an exitcode.
fn_exit_trap(){
echo ""
core_exit.sh
}
# trap to give an exitcode.
trap fn_exit_trap INT