diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2019-12-12 13:47:11 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2019-12-12 13:53:10 +0100 |
commit | a2d3e6b83e4dea7e98b440a877f08033940e2d58 (patch) | |
tree | d6524e942a15dca1e952cbf52674ad5ce9cea660 | |
parent | app-backup/rdedup: [QA] Fix ebuild style (diff) | |
download | gentoo-a2d3e6b83e4dea7e98b440a877f08033940e2d58.tar.gz gentoo-a2d3e6b83e4dea7e98b440a877f08033940e2d58.tar.bz2 gentoo-a2d3e6b83e4dea7e98b440a877f08033940e2d58.zip |
www-misc/shellinabox: remove user/group management through acct-* ebuilds.
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
-rw-r--r-- | www-misc/shellinabox/shellinabox-2.20-r3.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/www-misc/shellinabox/shellinabox-2.20-r3.ebuild b/www-misc/shellinabox/shellinabox-2.20-r3.ebuild index dd3929f75bfe..4ddaef132e05 100644 --- a/www-misc/shellinabox/shellinabox-2.20-r3.ebuild +++ b/www-misc/shellinabox/shellinabox-2.20-r3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools systemd +inherit user autotools systemd DESCRIPTION="Export command line tools to a web based terminal emulator" HOMEPAGE="https://github.com/shellinabox/shellinabox" @@ -14,12 +14,7 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="+pam" -RDEPEND=" - acct-user/shellinaboxd - acct-group/shellinaboxd" - DEPEND=" - ${RDEPEND} dev-libs/openssl:0= pam? ( sys-libs/pam )" @@ -39,6 +34,11 @@ cat server.crt server.key > certificate.pem EOF } +pkg_setup() { + enewgroup "${SIAB_DAEMON}" + enewuser "${SIAB_DAEMON}" -1 -1 -1 "${SIAB_DAEMON}" +} + src_prepare() { default eautoreconf @@ -77,6 +77,7 @@ src_install() { # Create directory where SSL certificates will be generated. dodir "${SIAB_CERT_DIR}" + fowners "${SIAB_DAEMON}:${SIAB_DAEMON}" "${SIAB_CERT_DIR}" # Generate set up variable. shellinbox_gen_ssl_setup |