inetutils: fix paths in xinetd config.

Closes #4658.
This commit is contained in:
Christian Neukirchen 2016-09-28 19:06:47 +02:00
parent f0f6f76ae5
commit 8d9408daf6
8 changed files with 10 additions and 9 deletions

View file

@ -4,7 +4,7 @@ service exec
socket_type = stream
wait = no
user = root
server = /usr/libexec/rexecd
server = /usr/bin/rexecd
log_on_failure += USERID
disable = yes
}

View file

@ -4,7 +4,7 @@ service login
socket_type = stream
wait = no
user = root
server = /usr/libexec/rlogind
server = /usr/bin/rlogind
log_on_failure += USERID
disable = yes
}

View file

@ -4,7 +4,7 @@ service shell
socket_type = stream
wait = no
user = root
server = /usr/libexec/rshd
server = /usr/bin/rshd
log_on_failure += USERID
disable = yes
}

View file

@ -4,7 +4,7 @@ service ntalk
socket_type = dgram
wait = yes
user = root
server = /usr/libexec/talkd
server = /usr/bin/talkd
log_on_failure += USERID
disable = yes
}

View file

@ -4,7 +4,7 @@ service telnet
socket_type = stream
wait = no
user = root
server = /usr/libexec/telnetd
server = /usr/bin/telnetd
log_on_failure += USERID
disable = yes
}

View file

@ -1,10 +1,11 @@
service tftp
{
flags = REUSE
socket_type = stream
socket_type = dgram
wait = no
user = root
server = /usr/libexec/tftpd
server = /usr/bin/tftpd
# server_args = -l --secure-dir=/var/lib/tftp /
log_on_failure += USERID
disable = yes
}

View file

@ -4,7 +4,7 @@ service uucp
socket_type = stream
wait = no
user = root
server = /usr/libexec/uucpd
server = /usr/bin/uucpd
log_on_failure += USERID
disable = yes
}

View file

@ -1,7 +1,7 @@
# Template file for 'inetutils'
pkgname=inetutils
version=1.9.4
revision=6
revision=7
build_style=gnu-configure
configure_args="--without-wrap --with-pam"
makedepends="pam-devel readline-devel"