adding example runit-style service directory

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2009-11-06 04:04:19 +01:00
parent 85bb843f47
commit 6cf7f01256
20 changed files with 613 additions and 0 deletions

21
examples/var_service/nmeter/run Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
# Since per-process /proc/net/ (-> /proc/self/net/) appeared,
# we need to be 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
eval exec \
setuidgid "$user" \
env - PATH="$PATH" \
<"$tty" >"$tty" 2>&1 \
$cmd