diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2015-01-14 02:43:29 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2015-01-14 02:43:29 +0000 |
commit | 2bc5297d47ffc6f2e82c7960671c29b6b1e1a0df (patch) | |
tree | c98799b9594e1879c96f9be79a96fab9b3688b92 /ftp | |
parent | 6ba92b59ff04fdbd51a1ae12e97f3b4f1da466a4 (diff) |
Notes
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/atftp/files/atftpd.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ftp/atftp/files/atftpd.in b/ftp/atftp/files/atftpd.in index fafc3f0f1044..13f1e47b6058 100644 --- a/ftp/atftp/files/atftpd.in +++ b/ftp/atftp/files/atftpd.in @@ -1,8 +1,7 @@ #!/bin/sh # PROVIDE: atftpd -# REQUIRE: DAEMON -# BEFORE: LOGIN +# REQUIRE: NETWORKING # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf @@ -25,7 +24,7 @@ logfile=/var/log/${name}.log load_rc_config $name [ -z "$atftpd_enable" ] && atftpd_enable="NO" -[ -z "$atftpd_flags" ] && atftpd_flags="--daemon --verbose=5 --pidfile ${pidfile} --logfile ${logfile} /tftpboot" +[ -z "$atftpd_flags" ] && atftpd_flags="--daemon --verbose=5 --pidfile ${pidfile} --logfile ${logfile} %%PREFIX%%/tftp" start_precmd="start_precmd" stop_postcmd="stop_postcmd" |