Skip to content

Commit

Permalink
inetutils: fix tcpd path of rlogin rsh and rexec
Browse files Browse the repository at this point in the history
rlogin, rsh and rexec xinet.d script, a wrong path is
being referenced under the server section.

server = /usr/bin/tcpd
instead of
server = /usr/sbin/tcpd

tcpd is provided by tcp-wrappers

Written-by: Herve.Patriarche <[email protected]>
Signed-off-by: Jian Liu <[email protected]>
Signed-off-by: Martin Jansa <[email protected]>
  • Loading branch information
Jian Liu authored and shr-project committed Jul 15, 2015
1 parent b124075 commit 7e19e3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ service exec
group = root
log_on_success += USERID
log_on_failure += USERID
server = /usr/bin/tcpd
server = /usr/sbin/tcpd
server_args = /usr/sbin/in.rexecd
disable = yes
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ service login
group = root
log_on_success += USERID
log_on_failure += USERID
server = /usr/bin/tcpd
server = /usr/sbin/tcpd
server_args = /usr/sbin/in.rlogind -a
disable = yes
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ service shell
group = root
log_on_success += USERID
log_on_failure += USERID
server = /usr/bin/tcpd
server = /usr/sbin/tcpd
server_args = /usr/sbin/in.rshd -aL
disable = yes
}

0 comments on commit 7e19e3f

Please sign in to comment.