diff options
author | Denys Vlasenko | 2009-11-08 00:55:39 +0100 |
---|---|---|
committer | Denys Vlasenko | 2009-11-08 00:55:39 +0100 |
commit | f5c2f72917e5f75634665f67a6105e1e82ece875 (patch) | |
tree | e1c6a85ae214ad33d4bf38e03f0a3548ad1525f6 /examples/var_service/nmeter | |
parent | 44f8d013994c20a53836a8768bd488130c7df9bc (diff) | |
download | busybox-f5c2f72917e5f75634665f67a6105e1e82ece875.zip busybox-f5c2f72917e5f75634665f67a6105e1e82ece875.tar.gz |
add more service examples
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/var_service/nmeter')
-rwxr-xr-x | examples/var_service/nmeter/run | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/examples/var_service/nmeter/run b/examples/var_service/nmeter/run index fa0837b..7e51124 100755 --- a/examples/var_service/nmeter/run +++ b/examples/var_service/nmeter/run @@ -1,21 +1,20 @@ #!/bin/sh +exec >/dev/null +exec 2>&1 +exec </dev/null + # Since per-process /proc/net/ (-> /proc/self/net/) appeared, # we need to be root -user=root +user="root" tty="/dev/tty9" - -chmod -R a+X . # or else env will moan -chown $user: $tty # devfs made happy - cmd="nmeter '%t %c x %x p%p f %f b %b m %m if%[nif]'" -exec >/dev/null -exec 2>&1 -exec </dev/null +chmod -R a+X . # or else env will moan +chown "$user": "$tty" # devfs made happy eval exec \ -setuidgid "$user" \ env - PATH="$PATH" \ +setuidgid "$user" \ <"$tty" >"$tty" 2>&1 \ $cmd |