Skip to content
Snippets Groups Projects
Commit 9b8bfe1e authored by Robert Ricci's avatar Robert Ricci
Browse files

Added ports-install, a simple little script to copy the testbed ports

into the proper location.
parent 494c0610
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#
# A little script to put the testbed ports into the ports tree
#
PORTSDIR=/usr/ports
PORTSUBDIR=misc
SRCDIR=`dirname $0`
PORTS="elvind emulab-boss emulab-ops libelvin tftp-hpa"
for PORT in $PORTS
do
cp -r $SRCDIR/$PORT $PORTSDIR/$PORTSUBDIR
if [ "$?" ]
then
exit 1
fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment