freebsd-ports/net/airport/files/airport
Nick Sayer 73deecf28e Oops. You need to install *both* kinds of configurator. Which you use
depends on which version of the airport ("graphite" or "snow") you own.
2002-05-26 16:36:05 +00:00

26 lines
346 B
Bash

#! /bin/sh
case $0 in
*airport)
file=AirportBaseStationConfig
;;
*airport2)
file=Airport2BaseStationConfig
;;
*hostmon)
file=HostMonitor
;;
*linkmon)
file=LinkMonitor
;;
*airmodem)
file=AirportModemUtility
;;
*)
echo "Unknown command"
exit 1
esac
exec %%PREFIX%%/bin/javavm -jar %%PREFIX%%/share/java/${file}.jar
exit 1