mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-07 04:20:39 -07:00
eb77d971c5
This required a fair amount of shuffling stuff around, as can be seen. Fortunately, now things ought to be able to run more or less standalone again. I also figured out a way to have the build system be a tad smarter about not rebuilding shared stuff, although you still install the exact same eris binary and /service subdirs for mcp and p2. But at least you only have to change one place in the source code now.
21 lines
282 B
Bash
Executable file
21 lines
282 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# Use first installed binary
|
|
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
|