diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/vsftpd/vsftpd_2.0.3.bb | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/vsftpd/vsftpd_2.0.3.bb')
-rw-r--r-- | packages/vsftpd/vsftpd_2.0.3.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/vsftpd/vsftpd_2.0.3.bb b/packages/vsftpd/vsftpd_2.0.3.bb index e69de29bb2..52be1d6285 100644 --- a/packages/vsftpd/vsftpd_2.0.3.bb +++ b/packages/vsftpd/vsftpd_2.0.3.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "Secure ftp daemon" +SECTION = "console/network" +DEPENDS = "openssl" +PR = "r2" +LICENSE = "GPL" +SRC_URI = "ftp://vsftpd.beasts.org/users/cevans/vsftpd-${PV}.tar.gz \ + file://makefile.patch;patch=1 \ + file://nopam.patch;patch=1 \ + file://init \ + file://vsftpd.conf" + +do_compile() { + oe_runmake "LIBS=-lssl -lcrypto -lcrypt -L${STAGING_LIBDIR}" +} + +do_install() { + install -d ${D}${sbindir} + install -d ${D}${mandir}/man8 + install -d ${D}${mandir}/man5 + oe_runmake 'DESTDIR=${D}' install + install -d ${D}${sysconfdir} + install -m 0755 ${WORKDIR}/vsftpd.conf ${D}${sysconfdir}/vsftpd.conf + install -d ${D}${sysconfdir}/init.d/ + install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/vsftpd +} + +inherit update-rc.d + +INITSCRIPT_NAME = "vsftpd" +INITSCRIPT_PARAMS = "defaults" + +pkg_postinst() { + addgroup ftp + adduser --system --home /var/tmp/ftp --no-create-home --ingroup ftp --disabled-password -s /bin/false ftp +}
\ No newline at end of file |