diff options
author | des <des@FreeBSD.org> | 2016-01-26 08:58:59 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2016-01-26 08:58:59 +0000 |
commit | de495bb5038898d1cfea304e7e76c91855db6955 (patch) | |
tree | 1d110b6bfedf67ffcf30a6eda79dd36ffdb9cb16 | |
parent | 5029ec74e3fb605f6c27628f57bd944e03fe25e8 (diff) | |
download | FreeBSD-src-de495bb5038898d1cfea304e7e76c91855db6955.zip FreeBSD-src-de495bb5038898d1cfea304e7e76c91855db6955.tar.gz |
MFH (r290008): load_rc_config no longer requires a service name
-rwxr-xr-x | etc/rc.d/othermta | 2 | ||||
-rw-r--r-- | etc/rc.shutdown | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.d/othermta b/etc/rc.d/othermta index 7ab3e63..36292ae 100755 --- a/etc/rc.d/othermta +++ b/etc/rc.d/othermta @@ -10,7 +10,7 @@ # . /etc/rc.subr -load_rc_config 'XXX' +load_rc_config if [ -n "${mta_start_script}" ]; then [ "${mta_start_script}" != "/etc/rc.sendmail" ] && \ diff --git a/etc/rc.shutdown b/etc/rc.shutdown index a0dd698..15779c7 100644 --- a/etc/rc.shutdown +++ b/etc/rc.shutdown @@ -45,7 +45,7 @@ export HOME PATH . /etc/rc.subr -load_rc_config 'XXX' +load_rc_config # reverse_list list # print the list in reverse order |