diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-08 00:55:39 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-08 00:55:39 +0100 |
commit | f5c2f72917e5f75634665f67a6105e1e82ece875 (patch) | |
tree | e1c6a85ae214ad33d4bf38e03f0a3548ad1525f6 /examples/var_service/nmeter | |
parent | 44f8d013994c20a53836a8768bd488130c7df9bc (diff) | |
download | busybox-w32-f5c2f72917e5f75634665f67a6105e1e82ece875.tar.gz busybox-w32-f5c2f72917e5f75634665f67a6105e1e82ece875.tar.bz2 busybox-w32-f5c2f72917e5f75634665f67a6105e1e82ece875.zip |
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 fa0837bc4..7e51124e1 100755 --- a/examples/var_service/nmeter/run +++ b/examples/var_service/nmeter/run | |||
@@ -1,21 +1,20 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | exec >/dev/null | ||
4 | exec 2>&1 | ||
5 | exec </dev/null | ||
6 | |||
3 | # Since per-process /proc/net/ (-> /proc/self/net/) appeared, | 7 | # Since per-process /proc/net/ (-> /proc/self/net/) appeared, |
4 | # we need to be root | 8 | # we need to be root |
5 | user=root | 9 | user="root" |
6 | tty="/dev/tty9" | 10 | tty="/dev/tty9" |
7 | |||
8 | chmod -R a+X . # or else env will moan | ||
9 | chown $user: $tty # devfs made happy | ||
10 | |||
11 | cmd="nmeter '%t %c x %x p%p f %f b %b m %m if%[nif]'" | 11 | cmd="nmeter '%t %c x %x p%p f %f b %b m %m if%[nif]'" |
12 | 12 | ||
13 | exec >/dev/null | 13 | chmod -R a+X . # or else env will moan |
14 | exec 2>&1 | 14 | chown "$user": "$tty" # devfs made happy |
15 | exec </dev/null | ||
16 | 15 | ||
17 | eval exec \ | 16 | eval exec \ |
18 | setuidgid "$user" \ | ||
19 | env - PATH="$PATH" \ | 17 | env - PATH="$PATH" \ |
18 | setuidgid "$user" \ | ||
20 | <"$tty" >"$tty" 2>&1 \ | 19 | <"$tty" >"$tty" 2>&1 \ |
21 | $cmd | 20 | $cmd |