diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-05-30 14:12:07 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-06-24 12:29:32 +0200 |
commit | a8d342f6b7484c4787cdbc120f29e277b1c3d54f (patch) | |
tree | cc0dd8bf93c9d4265279fe3c0187f74abab4a40c /net-ftp/ftpbase | |
parent | acct-user/ftp: Add 'ftp' user (UID 21) (diff) | |
download | gentoo-a8d342f6b7484c4787cdbc120f29e277b1c3d54f.tar.gz gentoo-a8d342f6b7484c4787cdbc120f29e277b1c3d54f.tar.bz2 gentoo-a8d342f6b7484c4787cdbc120f29e277b1c3d54f.zip |
net-ftp/ftpbase: Utilize {group,user}/ftp
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-ftp/ftpbase')
-rw-r--r-- | net-ftp/ftpbase/ftpbase-0.01-r3.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-ftp/ftpbase/ftpbase-0.01-r3.ebuild b/net-ftp/ftpbase/ftpbase-0.01-r3.ebuild new file mode 100644 index 000000000000..c333840faa18 --- /dev/null +++ b/net-ftp/ftpbase/ftpbase-0.01-r3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils pam user + +DESCRIPTION="FTP layout package" +HOMEPAGE="https://www.gentoo.org/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="pam" + +DEPEND="pam? ( virtual/pam ) + !<net-ftp/proftpd-1.2.10-r6 + !<net-ftp/pure-ftpd-1.0.20-r2 + !<net-ftp/vsftpd-2.0.3-r1" +RDEPEND=" + acct-group/ftp + acct-user/ftp" + +S=${WORKDIR} + +src_install() { + # The ftpusers file is a list of people who are NOT allowed + # to use the ftp service. + insinto /etc + doins "${FILESDIR}/ftpusers" || die + + cp "${FILESDIR}/ftp-pamd-include" "${T}" || die + if use elibc_FreeBSD; then + sed -i -e "/pam_listfile.so/s/^.*$/account required pam_ftpusers.so no_warn disallow/" \ + "${T}"/ftp-pamd-include || die + fi + newpamd "${T}"/ftp-pamd-include ftp +} |