mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Make subroutine names more conformant with other scripts in rc.d.
MFC After: 2 weeks
This commit is contained in:
parent
8e219dc525
commit
0a9b210037
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168119
1 changed files with 4 additions and 4 deletions
|
@ -12,10 +12,10 @@
|
|||
name="ppp"
|
||||
rcvar=`set_rcvar`
|
||||
command="/usr/sbin/${name}"
|
||||
start_precmd="ppp_precmd"
|
||||
start_postcmd="ppp_postcmd"
|
||||
start_precmd="ppp_prestart"
|
||||
start_postcmd="ppp_poststart"
|
||||
|
||||
ppp_precmd()
|
||||
ppp_prestart()
|
||||
{
|
||||
# Establish ppp mode.
|
||||
#
|
||||
|
@ -38,7 +38,7 @@ ppp_precmd()
|
|||
rc_flags="$rc_flags ${ppp_profile}"
|
||||
}
|
||||
|
||||
ppp_postcmd()
|
||||
ppp_poststart()
|
||||
{
|
||||
# Re-Sync ipfilter and pf so they pick up any new network interfaces
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue