2010-11-05 15:54:15 +01:00
|
|
|
#!/bin/sh
|
|
|
|
############################################
|
|
|
|
# just a wrapper to call the notifyer #
|
|
|
|
# needed here to keep dirs/configs clean #
|
|
|
|
# and maybe to set user-rights #
|
|
|
|
############################################
|
2011-03-24 19:01:16 +01:00
|
|
|
|
|
|
|
# Absolute path to this script
|
|
|
|
SCRIPT=`readlink -f $0`
|
|
|
|
# Absolute path this script is in
|
|
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
|
|
|
|
cd ${SCRIPTPATH}/../ && ./pypo-notify.py $1 $2 $3 $4 $5 $6 $7 $8 &
|