mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
8 lines
242 B
Bash
8 lines
242 B
Bash
|
#!/bin/sh
|
||
|
PREFIX=${PREFIX-/usr/local}
|
||
|
|
||
|
if [ -x ${PREFIX}/sbin/zhm -a -f ${PREFIX}/etc/zephyr/server.list ] ; then
|
||
|
PATH=${PREFIX}/sbin:${PREFIX}/bin:$PATH ; export PATH
|
||
|
zhm `cat ${PREFIX}/etc/zephyr/server.list` && echo -n ' zhm'
|
||
|
fi
|