Files
gateway-mnp-dbc/dbcmnpsrc/FE/mnpapp/script/ProcessExecutor.sh
2024-05-13 12:54:14 +02:00

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