#!/bin/bash # $HeadURL$ $LastChangedRevision$ PROGNAME=`basename $0` SANDPIT=`pwd` . $(ade-config ade_share_prefix)/include/adetestsupport.sh mkdir $SANDPIT/{etc,tmp} echo "setting up environment ..." export ROCON_CFG_FILE=$SANDPIT/etc/small.conf echo "creating config file ..." echo "testhost:AllHosts" > $ROCON_CFG_FILE echo "listing groups ..." rocon -g echo "adding a comment ..." echo "# This is a test" >> $ROCON_CFG_FILE echo "listing groups ..." rocon -g echo "all done"