12 lines
307 B
Bash
12 lines
307 B
Bash
#!/bin/ksh
|
|
THIS_PATH=`dirname $0`
|
|
|
|
check_node=`$THIS_PATH/TestNodo.sh`
|
|
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo "Nodo abilitato ad eseguire lo script"
|
|
. $THIS_PATH/javaExec_unix.sh it.valueteam.crontab.processexecutor.client.SimpleRunProcess $1 $2 $3 $4 $5
|
|
else
|
|
echo "(WARNING) Nodo non abilitato ad eseguire script"
|
|
fi |