blob: 62d32eb7be02d3e8be40c755ecc812eaf50e6b02 [file] [log] [blame]
#!/bin/csh
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE.txt file distributed with
# this work for additional information regarding copyright ownership. The ASF
# licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
set LIB_DEPS
foreach file (`find ../lib/*.jar`)
set LIB_DEPS = "${file}:${LIB_DEPS}"
end
setenv PATH ${JAVA_HOME}/bin:${CAS_PP_HOME}/bin:/usr/bin:/bin:/usr/sbin:/sbin
#execution -- do not set "java.ext.dirs" because it messes up search path for a sftp library
${JAVA_HOME}/bin/java \
-cp ${LIB_DEPS} -Dcom.sun.management.jmxremote \
-Djava.util.logging.config.file=../etc/logging.properties \
-Djavax.net.ssl.trustStore=${CAS_PP_RESOURCES}/jssecacerts \
org.apache.oodt.cas.pushpull.daemon.DaemonLauncher \
--rmiRegistryPort ${DAEMONLAUNCHER_PORT} \
--propertiesFile ${CAS_PP_RESOURCES}/push_pull_framework.properties \
--remoteSpecsFile ${CAS_PP_RESOURCES}/examples/RemoteSpecsFiles/RemoteSpecs.xml