diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2009-11-16 10:00:26 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2009-11-16 10:00:26 +0000 |
commit | 2f52e5effb555675a693aacba9d456bb08c186b7 (patch) | |
tree | cfd5c7ffbdd71c6785f16c33d5fcaa09042361c0 /app-admin | |
parent | Updated depends in latest and removed unecessary rev (see bug #293065). (diff) | |
download | gentoo-2-2f52e5effb555675a693aacba9d456bb08c186b7.tar.gz gentoo-2-2f52e5effb555675a693aacba9d456bb08c186b7.tar.bz2 gentoo-2-2f52e5effb555675a693aacba9d456bb08c186b7.zip |
version bump, also fixes bug #274250
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/sysrqd/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/sysrqd/files/sysrqd-12-config.patch | 13 | ||||
-rw-r--r-- | app-admin/sysrqd/sysrqd-12.ebuild | 56 |
3 files changed, 76 insertions, 1 deletions
diff --git a/app-admin/sysrqd/ChangeLog b/app-admin/sysrqd/ChangeLog index c4611415e1ea..bbb76a10102b 100644 --- a/app-admin/sysrqd/ChangeLog +++ b/app-admin/sysrqd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/sysrqd # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/ChangeLog,v 1.4 2009/10/28 04:18:05 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/ChangeLog,v 1.5 2009/11/16 10:00:26 wschlich Exp $ + +*sysrqd-12 (16 Nov 2009) + + 16 Nov 2009; Wolfram Schlich <wschlich@gentoo.org> + +files/sysrqd-12-config.patch, +sysrqd-12.ebuild: + version bump, also fixes bug #274250 28 Oct 2009; Robin H. Johnson <robbat2@gentoo.org> sysrqd-9.ebuild: Keyword for ~amd64. diff --git a/app-admin/sysrqd/files/sysrqd-12-config.patch b/app-admin/sysrqd/files/sysrqd-12-config.patch new file mode 100644 index 000000000000..ce463814d1e3 --- /dev/null +++ b/app-admin/sysrqd/files/sysrqd-12-config.patch @@ -0,0 +1,13 @@ +--- sysrqd.c.orig 2009-11-05 14:58:21.644471772 +0100 ++++ sysrqd.c 2009-11-05 14:58:43.276472005 +0100 +@@ -40,8 +40,8 @@ + #define BIND_MAX_LEN 16 + #define PROMPT "sysrq> " + #define SYSRQ_TRIGGER_PATH "/proc/sysrq-trigger" +-#define AUTH_FILE "/etc/sysrqd.secret" +-#define BINDIP_FILE "/etc/sysrqd.bind" ++#define AUTH_FILE "/etc/sysrqd/sysrqd.secret" ++#define BINDIP_FILE "/etc/sysrqd/sysrqd.bind" + #define PID_FILE "/var/run/sysrqd.pid" + #define SYSRQD_PRIO -19 + #define SYSRQD_LISTEN_PORT 4094 diff --git a/app-admin/sysrqd/sysrqd-12.ebuild b/app-admin/sysrqd/sysrqd-12.ebuild new file mode 100644 index 000000000000..8e0881ad8b4b --- /dev/null +++ b/app-admin/sysrqd/sysrqd-12.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/sysrqd-12.ebuild,v 1.1 2009/11/16 10:00:26 wschlich Exp $ + +inherit eutils toolchain-funcs + +IUSE="" +DESCRIPTION="daemon providing access to the kernel sysrq functions via network" +HOMEPAGE="http://julien.danjou.info/sysrqd.html" +SRC_URI="http://julien.danjou.info/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +DEPEND="" +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-config.patch" +} + +src_compile() { + $(tc-getCC) ${CFLAGS} -o sysrqd sysrqd.c +} + +src_install() { + + dosbin sysrqd + newinitd "${FILESDIR}/sysrqd.init" sysrqd + + local bindip='127.0.0.1' secret + declare -i secret + let secret=${RANDOM}*${RANDOM}*${RANDOM}*${RANDOM} + echo ${bindip} > sysrqd.bind + echo ${secret} > sysrqd.secret + + diropts -m 0700 -o root -g root + dodir /etc/sysrqd + insinto /etc/sysrqd + insopts -m 0600 -o root -g root + doins sysrqd.bind + doins sysrqd.secret + + dodoc README ChangeLog +} + +pkg_postinst() { + elog + elog "Be sure to change the initial secret in /etc/sysrqd/sysrqd.secret !" + elog "As a security precaution, sysrqd is configured to only listen on" + elog "127.0.0.1 by default. Change the content of /etc/sysrqd/sysrqd.bind" + elog "to an IPv4 address you want it to listen on or remove the file" + elog "to make it listen on any IP address (0.0.0.0)." + elog +} |