diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-24 00:51:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-24 00:51:22 +0000 |
commit | 043b7504f589a0054421ce23a0f4cf029c704cf6 (patch) | |
tree | 69823bf89cf9ec0a9efd6cc348331e7658c7434e | |
parent | 12c0ee02db714160510d398dbb8c04bd372b0f1d (diff) |
Not that kvm parts are removed, run rpc.rstatd and rpc.rusers as
nobody. While I do not like running things as nobody since the step
up is very small, we use this for other daemons in inetd. And it is
still a small step.
-rw-r--r-- | etc/inetd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inetd.conf b/etc/inetd.conf index 68d65a4b3b8..c8d5f45aef2 100644 --- a/etc/inetd.conf +++ b/etc/inetd.conf @@ -1,4 +1,4 @@ -# $OpenBSD: inetd.conf,v 1.44 2002/05/06 22:22:50 millert Exp $ +# $OpenBSD: inetd.conf,v 1.45 2002/05/24 00:51:21 deraadt Exp $ # # Internet server configuration database # @@ -51,8 +51,8 @@ time stream tcp6 nowait root internal # Encrypted X connections #kx stream tcp nowait root /usr/X11R6/bin/kxd kxd # RPC based services -rstatd/1-3 dgram rpc/udp wait root /usr/libexec/rpc.rstatd rpc.rstatd -rusersd/1-3 dgram rpc/udp wait root /usr/libexec/rpc.rusersd rpc.rusersd +rstatd/1-3 dgram rpc/udp wait nobody /usr/libexec/rpc.rstatd rpc.rstatd +rusersd/1-3 dgram rpc/udp wait nobody /usr/libexec/rpc.rusersd rpc.rusersd #walld/1 dgram rpc/udp wait root /usr/libexec/rpc.rwalld rpc.rwalld #sprayd/1 dgram rpc/udp wait root /usr/libexec/rpc.sprayd rpc.sprayd #rquotad/1 dgram rpc/udp wait root /usr/libexec/rpc.rquotad rpc.rquotad |