diff options
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 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | #exec >/dev/null | ||
4 | exec 2>&1 | ||
5 | exec </dev/null | ||
6 | |||
7 | user=root # for bind to port 69 | ||
8 | |||
9 | exec \ | ||
10 | env - \ | ||
11 | softlimit \ | ||
12 | setuidgid "$user" \ | ||
13 | udpsvd -v -c 10 -l localhost \ | ||
14 | 0 69 \ | ||
15 | tftpd /pub/tftpd_root | ||