mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
0175383f0a
propogated by copy and paste. 1. Primarily the "empty variable" default assignment, which is mostly ${name}_flags="", but fix a few others as well. 2. Where they are not already documented, add the existence of the _flags (or other deleted empties) option to the comments, and in some cases add comments from scratch. 3. Replace things that look like: prefix=%%PREFIX%% command=${prefix}/sbin/foo to just use %%PREFIX%%. In many cases the $prefix variable is only used once, and in some cases it is not used at all. 4. In a few cases remove ${name}_flags from command_args 5. Remove a long-stale comment about putting the port's rc.d script in /etc/rc.d (which is no longer necessary). No PORTREVISION bumps because all of these changes are noops.
32 lines
555 B
Bash
32 lines
555 B
Bash
#! /bin/sh
|
|
|
|
# use a subshell to support new -CURRENT rc.d structure
|
|
(
|
|
daemon=pppoe-server
|
|
daemon_path=/usr/local/sbin
|
|
#daemon_flags=
|
|
|
|
case $1 in
|
|
start)
|
|
if [ -x ${daemon_path}/$daemon ]; then
|
|
${daemon_path}/$daemon $daemon_flags
|
|
echo -n " $daemon"
|
|
fi
|
|
;;
|
|
stop)
|
|
killall $daemon && echo -n " $daemon"
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "Usage: `basename $0` {start|stop|restart}" >&2
|
|
exit 64
|
|
;;
|
|
esac
|
|
|
|
exit 0
|
|
)
|