source: trunk/bin/jobagent.sh @ 4508

Last change on this file since 4508 was 4508, checked in by Jari Häkkinen, 15 years ago

Addresses #1106. Missed to change reference wherefrom retrive GPLv3 license text. And some other changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 993 bytes
Line 
1#!/bin/sh
2# $Id: jobagent.sh 4508 2008-09-11 20:00:35Z jari $
3#
4# Copyright (C) 2006 Nicklas Nordborg
5#
6# This file is part of BASE - BioArray Software Environment.
7# Available at http://base.thep.lu.se/
8#
9# BASE is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License
11# as published by the Free Software Foundation; either version 3
12# of the License, or (at your option) any later version.
13#
14# BASE is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with BASE. If not, see <http://www.gnu.org/licenses/>.
21#
22
23# Import CLASSPATH($CP)
24. ./set_classpath.sh
25
26# Add jobagent specific classes to the CP
27CP=$CP:jar/JobAgent.jar
28
29# Execute JobAgent
30java -server -Xmx50M -Xms50M -cp $CP net.sf.basedb.clients.jobagent.AgentController $*
Note: See TracBrowser for help on using the repository browser.