18 lines
517 B
Bash
18 lines
517 B
Bash
#!/bin/ksh
|
|
|
|
###########################################################
|
|
# Progetto: Gateway MNP
|
|
# Script: rinvio_xml
|
|
# Descrizione: Rinvio dei file xml dalla macchina FE al BE
|
|
###########################################################
|
|
|
|
#path
|
|
THIS_PATH=`dirname $0`
|
|
|
|
#shell name
|
|
THIS=`basename $0 .sh`
|
|
|
|
echo '******' $(date) starting $THIS
|
|
|
|
$THIS_PATH/javaExec_unix.sh -Dweblogic.security.TrustKeyStore=CustomTrust -Dweblogic.security.CustomTrustKeyStoreFileName=/mnpapp/cert/mnpCAkeystore mnp.manager.ReinvioManager
|