Files
ports/benchmarks/siege/files/siege.config.in
Pav Lucistnik 4057dd908a - Update to 2.57
- Give maintainership to submitter

PR:		ports/59738
Submitted by:	Clement Laforet <sheepkiller@cultdeadsheep.org>
Approved by:	adamw (mentor)
2003-12-04 10:22:32 +00:00

28 lines
866 B
Bash

#!/bin/sh
# SCRIPT: siege.config
# AUTHOR: Jeffrey Fulmer <jdfulmer@armstrong.com>
# DATE: Mon May 28 11:40:28 EDT 2001
# SYNOP: This script generates an $HOME/.siegerc
# file from the doc/siegerc.in template.
# Its contents are added to this script by
# configure. The siegerc file template is
# maintained once in $(top_srcdir)/doc.
rcfile="$HOME/.siegerc"
if test -f $rcfile; then
echo "siege.config"
echo "usage: siege.config [no arguments]"
echo "----------------------------------"
echo "Resource file already install as $rcfile"
echo "Use your favorite editor to change your configuration by"
echo "editing the values in that file."
echo ""
exit
fi
cp %%DATADIR%%/siegerc ${rcfile}
echo "New configuration template added to $rcfile"
echo "Run siege -C to view the current settings in that file"
exit