moth/packages/00common/service/pointsd/mkpage

24 lines
305 B
Plaintext
Raw Normal View History

#! /bin/sh
2012-07-16 17:46:27 -06:00
OPT=${CTF_BASE:-/opt}
# Use first installed binary
2012-07-16 17:46:27 -06:00
for bin in $OPT/*/bin/$1; do
if [ -x $bin ]; then
exec $bin
fi
done
cat <<EOD
<!DOCTYPE html>
<html>
<head>
<title>$1</title>
</head>
<body>
<h1>$1</h1>
<p>No $1 binary installed!</p>
</body>
</html>
EOD