You are on page 1of 2

#!

/usr/bin/bash -p
# Moshell
# Finn Magnusson , finn.magnusson@ericsson.com
# Based on rbsshell by Jan Pettersson

####################################################################
######
# Moshell folders location (DO NOT EDIT)
####################################################################
######
moshell_version="7.1m"
moshelldir=`dirname "$0"`
if [[ $moshelldir != /* ]] ; then moshelldir=`pwd`/$moshelldir ; fi
commonjardir="$moshelldir/commonjars"
sitefiledir="$moshelldir/sitefiles"

####################################################################
######
# FOLLOWING SETTINGS ARE CUSTOMIZABLE BY EACH USER.
# If changes need to be made to the default values, it is
recommended to do it in
# one of the following files:
# moshell/jarxml/moshellrc (settings will apply to all users)
# ~/.moshellrc (settings will apply to own user
only)
# It's also possible to specify a uservariable on session basis:
# at moshell startup with "-v" option
# or from within moshell, using the "uv" command
####################################################################
######

#===================================================================
=============
# jarxml directory (to store MOM files and jar files which are
fetched from the node)
#===================================================================
=============
jarxmldir=$moshelldir/jarxml

#===================================================================
=============
# Path to java. Java version must be 1.2.2 or higher.
#===================================================================
=============
java="/cygdrive/c/windows/system32/java"

#===================================================================
=============
# IPDATABASE FILE : to specify node names and node passwords, see
example in moshell/examples/ipdatabase
# several ipdatabase files can be specified, just separate them with
commas.
# eg: ip_database=$sitefiledir/ipdatabase,/home/toto/myipdatabase
#===================================================================
=============

You might also like