summaryrefslogtreecommitdiff
path: root/xpp/utils/astribank_hook
blob: 53d42f93b6cdf1b29efb2d250744877590965de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#! /bin/sh

set -e

xpp_sync="/root/xortel/xpp_sync"

me=`basename $0`
INIT_DIR=`dirname $0`
XPP_BASE=/proc/xpp
export XPP_BASE
LOGGER="logger -s -t $me"

ZAPTEL_BOOT_DEBIAN=${ZAPTEL_BOOT_DEBIAN:-/etc/default/zaptel}
ZAPTEL_BOOT_FEDORA=${ZAPTEL_BOOT_FEDORA:-/etc/sysconfig/zaptel}

# read default configuration from /etc/default/zaptel
if [ -r $ZAPTEL_BOOT_DEBIAN ]; then . $ZAPTEL_BOOT_DEBIAN; fi
if [ -r $ZAPTEL_BOOT_FEDORA ]; then . $ZAPTEL_BOOT_FEDORA; fi

if [ "$ASTRIBANK_HOOK_DISABLED" != '' ]; then
	$LOGGER -p kern.info "Exiting... ASTRIBANK_HOOK_DISABLED"
	exit 0
fi

# Always redirect stderr somewhere, otherwise the shell script will die
# when it tries to do I/O related stuff on closed file descriptor.
# Our default is to throw it down the bit-bucket.
#exec 2> /dev/console
## If you wish to trace this script:
#exec 2> "/tmp/astribank_hook_$XBUS_NAME"

$LOGGER -p kern.info "$ACTION: $*"

$LOGGER -p kern.info "Change Sync"

case "$ACTION" in
add)
	"$xpp_sync" auto
	;;
remove)
	"$xpp_sync" auto
	;;
*)
	;;
esac

"$xpp_sync" | $LOGGER -p kern.info