diff options
author | jfitz <jfitz@FreeBSD.org> | 1999-03-11 16:17:24 +0000 |
---|---|---|
committer | jfitz <jfitz@FreeBSD.org> | 1999-03-11 16:17:24 +0000 |
commit | 1a5c7969f45e00a64debc5e437a5ada62d051e0b (patch) | |
tree | 6731f8a0a1d6a833630fcf9f27f5436a44b91fd9 /etc/rc | |
parent | a633f105291cf608175cecd993dc1035a92b6f20 (diff) | |
download | FreeBSD-src-1a5c7969f45e00a64debc5e437a5ada62d051e0b.zip FreeBSD-src-1a5c7969f45e00a64debc5e437a5ada62d051e0b.tar.gz |
Add ${lpd_program} and ${portmap_program} as variables in rc.conf, with
suitable defaults pointing to the FreeBSD-shipped versions. This will allow
for easier integration of third-party replacements for these daemons.
Reviewed by: Several members of -committers
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.178 1999/02/10 18:08:16 jkh Exp $ +# $Id: rc,v 1.179 1999/02/13 05:30:49 jkh Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -305,7 +305,7 @@ if [ "X${cron_enable}" != X"NO" ]; then fi if [ "X${lpd_enable}" = X"YES" ]; then - echo -n ' printer'; lpd ${lpd_flags} + echo -n ' printer'; ${lpd_program} ${lpd_flags} fi if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then |