diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-28 09:32:59 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-28 09:32:59 +0000 |
commit | 4b20e04e42213df4fed3f9b1a32d2853a7564380 (patch) | |
tree | 6534bf286c34c004286e26de7339d7c99df941f2 /extra/oidentd | |
parent | 4742ffc955a9db4df026db4a65346714d872f5b3 (diff) | |
download | aports-4b20e04e42213df4fed3f9b1a32d2853a7564380.tar.bz2 aports-4b20e04e42213df4fed3f9b1a32d2853a7564380.tar.xz |
extra/oidentd: moved from testing
Diffstat (limited to 'extra/oidentd')
-rw-r--r-- | extra/oidentd/APKBUILD | 34 | ||||
-rw-r--r-- | extra/oidentd/oidentd.conf | 22 | ||||
-rw-r--r-- | extra/oidentd/oidentd.confd | 4 | ||||
-rw-r--r-- | extra/oidentd/oidentd.initd | 42 |
4 files changed, 102 insertions, 0 deletions
diff --git a/extra/oidentd/APKBUILD b/extra/oidentd/APKBUILD new file mode 100644 index 000000000..130283f72 --- /dev/null +++ b/extra/oidentd/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Carlo Landmeter <clandmeter@gmail.com> +pkgname=oidentd +pkgver=2.0.8 +pkgrel=0 +pkgdesc="Configurable IDENT server that supports NAT/IP masq." +url="http://dev.ojnk.net/" +license="GPL" +depends="uclibc" +makedepends="" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/ojnk/$pkgname-$pkgver.tar.gz +oidentd.conf +oidentd.initd +oidentd.confd" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 + make DESTDIR="$pkgdir" install + install -D -m755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + install -D -m644 "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname + install -D -m644 "$srcdir"/$pkgname.conf "$pkgdir"/etc/$pkgname.conf + +} + +md5sums="c3d9a56255819ef8904b867284386911 oidentd-2.0.8.tar.gz +d9c40e4d6a0bde685a359ad49b4eada2 oidentd.conf +89a027c3b8245f6c5e79930d16d485f7 oidentd.initd +05a43d3987754f179f4e31bbe61ff315 oidentd.confd" diff --git a/extra/oidentd/oidentd.conf b/extra/oidentd/oidentd.conf new file mode 100644 index 000000000..03b28d827 --- /dev/null +++ b/extra/oidentd/oidentd.conf @@ -0,0 +1,22 @@ +# Configuration for oidentd +# see oidentd.conf(5) +# +default { + default { + deny spoof + deny spoof_all + deny spoof_privport + allow random + allow random_numeric + allow numeric + deny hide + } +} + +# you may want to hide root connections +#user "root" { +# default { +# force reply "UNKNOWN" +# } +#} + diff --git a/extra/oidentd/oidentd.confd b/extra/oidentd/oidentd.confd new file mode 100644 index 000000000..3116889e6 --- /dev/null +++ b/extra/oidentd/oidentd.confd @@ -0,0 +1,4 @@ +# oidentd start-up options +USER="nobody" +GROUP="nobody" +OPTIONS="" diff --git a/extra/oidentd/oidentd.initd b/extra/oidentd/oidentd.initd new file mode 100644 index 000000000..c40b058da --- /dev/null +++ b/extra/oidentd/oidentd.initd @@ -0,0 +1,42 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/www/viewcvs.gentoo.org/raw_cvs/gentoo-x86/net-misc/oidentd/files/oidentd-2.0.7-init,v 1.4 2007/10/24 11:38:14 uberlord Exp $ + +depend() { + need net +} + +check_config() { + if [ -z "${USER}" ] + then + eerror "Please set \$USER in /etc/conf.d/oidentd!" + return 1 + fi + if [ -z "${GROUP}" ] + then + eerror "Please set \$GROUP in /etc/conf.d/oidentd!" + return 1 + fi + + if [ "$(sysctl -n security.bsd.see_other_uids 2>/dev/null)" = "0" ]; then + eerror "${SVCNAME} cannot work if the sysctl security.bsd.see_other_uids is 0" + return 1 + fi +} + + +start() { + check_config || return 1 + ebegin "Starting oidentd" + OPTIONS="${OPTIONS} -u ${USER} -g ${GROUP}" + start-stop-daemon --start --quiet --exec /usr/sbin/oidentd -- $OPTIONS + eend $? +} + +stop() { + ebegin "Stopping oidentd" + start-stop-daemon --stop --quiet --exec /usr/sbin/oidentd + eend $? +} + |