source: tools/Scripts/Logon@ 787

Last change on this file since 787 was 274, checked in by ogrimm, 14 years ago
drsdaq publishes some more run-related services
File size: 1.3 KB
Line 
1#!/bin/bash
2
3# This script should be sourced at log on (e.g. in .bashrc)
4
5export REPOS_DIR=$1
6if [ -z "$DIM_DNS_NODE" ]; then export DIM_DNS_NODE=ihp-pc1.ethz.ch; fi
7export DIM_HOST_NODE=$HOST.ethz.ch
8if [ -z "$DIMDIR" ]; then export DIMDIR=/usr/local/dim/; fi
9if [ -z "$QWTDIR" ]; then export QWTDIR=/usr/local/qwt/; fi
10if [ -z "$QTDIR" ]; then export QTDIR=/usr/local/Trolltech/Qt-4.6.2; fi
11
12export LD_LIBRARY_PATH=$QWTDIR/lib:$DIMDIR/linux:$LD_LIBRARY_PATH
13export PATH=$DIMDIR/linux:$REPOS_DIR/tools/Scripts:$QTDIR/bin:.:$PATH
14
15echo
16echo Note: Operation needs Evidence configuration server running on $DIM_DNS_NODE
17echo "To start, log on as user 'daqct3' and execute 'start' script"
18echo "Contact: Oliver Grimm (32192) or Quirin Weitzel (33973)"
19echo
20
21# Check if repository is a mixed or locally modified version (only for login shell))
22# The revision warning is given only once at login.
23
24if [ "${USER}" = "daqct3" ]; then
25#if shopt -q login_shell; then
26if [[ `svnversion $REPOS_DIR/drsdaq -n` == *:* ]] || [[ `svnversion $REPOS_DIR/drsdaq -n` == *M ]]; then
27 xterm -e "echo 'Warning: drsdaq in repository does not have a single revision number';
28 echo 'Make an update before starting a run!';
29 echo 'Contact O.Grimm or Q.Weitzel in case you need help';
30 echo 'Hit return to continue';
31 read;"
32#fi
33fi
34fi
Note: See TracBrowser for help on using the repository browser.