diff options
author | dougb <dougb@FreeBSD.org> | 2012-08-06 07:19:36 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2012-08-06 07:19:36 +0800 |
commit | f0d9f58b7f1825fb95236f427a6400ad54ad4b5e (patch) | |
tree | 1ed78841e1757014ccc09581c61c3683992d3f77 /ftp/smbftpd | |
parent | 37b2a027341f57b44383efc005905ca41779dce6 (diff) | |
download | freebsd-ports-gnome-f0d9f58b7f1825fb95236f427a6400ad54ad4b5e.tar.gz freebsd-ports-gnome-f0d9f58b7f1825fb95236f427a6400ad54ad4b5e.tar.zst freebsd-ports-gnome-f0d9f58b7f1825fb95236f427a6400ad54ad4b5e.zip |
Move the rc.d scripts of the form *.sh.in to *.in
Where necessary add $FreeBSD$ to the file
No PORTREVISION bump necessary because this is a no-op
Diffstat (limited to 'ftp/smbftpd')
-rw-r--r-- | ftp/smbftpd/Makefile | 2 | ||||
-rw-r--r-- | ftp/smbftpd/files/smbftpd.in (renamed from ftp/smbftpd/files/smbftpd.sh.in) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ftp/smbftpd/Makefile b/ftp/smbftpd/Makefile index b0303d2307eb..15b69b119f1c 100644 --- a/ftp/smbftpd/Makefile +++ b/ftp/smbftpd/Makefile @@ -26,7 +26,7 @@ CONFIGURE_ARGS= "--prefix=${PREFIX}" WRKSRC= ${WRKDIR}/${PORTNAME} USE_PERL5= yes -USE_RC_SUBR= ${PORTNAME}.sh +USE_RC_SUBR= ${PORTNAME} .include <bsd.port.pre.mk> diff --git a/ftp/smbftpd/files/smbftpd.sh.in b/ftp/smbftpd/files/smbftpd.in index c079c4014309..1b83c83ae54c 100644 --- a/ftp/smbftpd/files/smbftpd.sh.in +++ b/ftp/smbftpd/files/smbftpd.in @@ -1,15 +1,15 @@ #!/bin/sh +# $FreeBSD$ +# # PROVIDE: smbftpd # REQUIRE: NETWORKING SERVERS # BEFORE: DAEMON # KEYWORD: shutdown - # # Add the following lines to /etc/rc.conf to enable pure-ftpd: # # smbftpd_enable="YES" -# . /etc/rc.subr |