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/gpm | |
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/gpm')
-rwxr-xr-x | examples/var_service/gpm/run | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/var_service/gpm/run b/examples/var_service/gpm/run new file mode 100755 index 000000000..a13fdcdf0 --- /dev/null +++ b/examples/var_service/gpm/run | |||
@@ -0,0 +1,15 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | exec >/dev/null | ||
4 | exec 2>&1 | ||
5 | exec </dev/null | ||
6 | |||
7 | user=root | ||
8 | options="-D -2 -m /dev/psaux -t ps2" | ||
9 | #options="-D -2 -m /dev/ttyS0 -t bare" | ||
10 | |||
11 | exec \ | ||
12 | env - PATH="$PATH" \ | ||
13 | softlimit \ | ||
14 | setuidgid "$user" \ | ||
15 | gpm $options | ||