oidentd: assumed maintenance, moved back to opt
This commit is contained in:
parent
d4096c2854
commit
720a6f5b8c
13
oidentd/.footprint
Normal file
13
oidentd/.footprint
Normal file
@ -0,0 +1,13 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
-rw-r--r-- root/root etc/oidentd.conf
|
||||
drwxr-xr-x root/root etc/rc.d/
|
||||
-rwxr-xr-x root/root etc/rc.d/oidentd
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/man/
|
||||
drwxr-xr-x root/root usr/man/man5/
|
||||
-rw-r--r-- root/root usr/man/man5/oidentd.conf.5.gz
|
||||
-rw-r--r-- root/root usr/man/man5/oidentd_masq.conf.5.gz
|
||||
drwxr-xr-x root/root usr/man/man8/
|
||||
-rw-r--r-- root/root usr/man/man8/oidentd.8.gz
|
||||
drwxr-xr-x root/root usr/sbin/
|
||||
-rwxr-xr-x root/root usr/sbin/oidentd
|
3
oidentd/.md5sum
Normal file
3
oidentd/.md5sum
Normal file
@ -0,0 +1,3 @@
|
||||
f06125cda487202c394e8cf544187350 oidentd
|
||||
cf1c017496b066b45ffe3d7a303fd6ad oidentd-2.0.7.tar.gz
|
||||
6a8d4454f18103050a43d05aa3dc287d oidentd.conf
|
23
oidentd/Pkgfile
Normal file
23
oidentd/Pkgfile
Normal file
@ -0,0 +1,23 @@
|
||||
# Description: Identd daemon with IPv6 support
|
||||
# URL: http://dev.ojnk.net/
|
||||
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
||||
# Packager: Daniel Mueller, daniel at danm dot de
|
||||
|
||||
name=oidentd
|
||||
version=2.0.7
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/sourceforge/ojnk/$name-$version.tar.gz \
|
||||
$name.conf $name)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr \
|
||||
--enable-ipv6 \
|
||||
--enable-masq \
|
||||
--sysconfdir=/etc
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
mkdir -p $PKG/etc/rc.d
|
||||
install -m 755 $SRC/$name $PKG/etc/rc.d/
|
||||
install -m 644 $SRC/$name.conf $PKG/etc/
|
||||
}
|
24
oidentd/oidentd
Normal file
24
oidentd/oidentd
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# /etc/rc.d/oidentd
|
||||
#
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
/usr/sbin/oidentd -C /etc/oidentd.conf -u nobody -l 10
|
||||
;;
|
||||
stop)
|
||||
killall /usr/sbin/oidentd
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop}"
|
||||
;;
|
||||
esac
|
||||
|
||||
#
|
||||
# End of file
|
||||
#
|
15
oidentd/oidentd.conf
Normal file
15
oidentd/oidentd.conf
Normal file
@ -0,0 +1,15 @@
|
||||
default {
|
||||
default {
|
||||
deny spoof
|
||||
deny spoof_all
|
||||
deny spoof_privport
|
||||
allow random_numeric
|
||||
allow numeric
|
||||
allow hide
|
||||
}
|
||||
}
|
||||
user root {
|
||||
default {
|
||||
force reply "UNKNOWN"
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user