Codebase list metche / 1cd1c01
DEBUG values are now yes/no instead of confusing 1/0 intrigeri 18 years ago
2 changed file(s) with 5 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
4343 }
4444
4545 debug() {
46 [ $DEBUG -eq 0 ] || echo -e "debug: $@" >&2
46 [ "$DEBUG" != yes ] || echo -e "debug: $@" >&2
4747 }
4848
4949 email() {
6262 ### Configuration
6363 ###
6464
65 DEBUG=1
65 DEBUG=yes
6666 WATCHED_DIR="/etc"
6767 BACKUP_DIR="/var/lib/metche"
6868 # if set, activate single changelog mode
5454 VSERVER_EXEC_PREFIX=""
5555 #VSERVER_EXEC_PREFIX="/usr/sbin/vserver blabla exec"
5656
57 # Set this to 1 to get more debugging output, else 0.
58 # (default: 1 until metche 1.0 is released)
59 #DEBUG=1
57 # Set this to yes to get more debugging output.
58 # (default: enabled until metche 1.0 is released)
59 #DEBUG=no
6060
6161 #######################################################################
6262 #