diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-08 18:41:26 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-08 18:41:26 +0100 |
commit | c3896850f748c4cff3e2a950f6b31f17c25ca141 (patch) | |
tree | 52cf345b4c647b47f5c06917dad0a39bc224f478 /examples/var_service/tftpd/run | |
parent | 6528abeb6af88f40924c85e8cf05dad1d3ab88a5 (diff) | |
download | busybox-c3896850f748c4cff3e2a950f6b31f17c25ca141.tar.gz |
add and example of tftpd service
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/var_service/tftpd/run')
-rwxr-xr-x | examples/var_service/tftpd/run | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/var_service/tftpd/run b/examples/var_service/tftpd/run new file mode 100755 index 000000000..e492d8453 --- /dev/null +++ b/examples/var_service/tftpd/run @@ -0,0 +1,15 @@ +#!/bin/sh + +#exec >/dev/null +exec 2>&1 +exec </dev/null + +user=root # for bind to port 69 + +exec \ +env - \ +softlimit \ +setuidgid "$user" \ +udpsvd -v -c 10 -l localhost \ + 0 69 \ +tftpd /pub/tftpd_root |