diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-07-03 23:23:09 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-07-03 23:23:09 +0200 |
commit | 14339191afc5d77205487e3365ca2569f86afd44 (patch) | |
tree | 95fdd8f36e2dcf61126bbbdfe55c735562bcac7e /examples/var_service/ftpd | |
parent | aa75a7da7f3b0bb50be82f535244137bae423fa8 (diff) | |
download | busybox-w32-14339191afc5d77205487e3365ca2569f86afd44.tar.gz busybox-w32-14339191afc5d77205487e3365ca2569f86afd44.tar.bz2 busybox-w32-14339191afc5d77205487e3365ca2569f86afd44.zip |
examples/var_service/: use standard logger script, viewer and pager scripts
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/var_service/ftpd')
-rw-r--r-- | examples/var_service/ftpd/README | 5 | ||||
-rwxr-xr-x | examples/var_service/ftpd/log/run | 21 | ||||
-rwxr-xr-x | examples/var_service/ftpd/p_log | 4 | ||||
-rwxr-xr-x | examples/var_service/ftpd/w_log | 4 |
4 files changed, 1 insertions, 33 deletions
diff --git a/examples/var_service/ftpd/README b/examples/var_service/ftpd/README deleted file mode 100644 index 4ddccb22d..000000000 --- a/examples/var_service/ftpd/README +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | The real README file is one directory up. | ||
2 | |||
3 | This directory's run script can have useful comments. | ||
4 | If it doesn't but you feel it should, please send a patch | ||
5 | to busybox's mailing list. | ||
diff --git a/examples/var_service/ftpd/log/run b/examples/var_service/ftpd/log/run index 69d74b73f..756be4e7e 100755 --- a/examples/var_service/ftpd/log/run +++ b/examples/var_service/ftpd/log/run | |||
@@ -1,21 +1,2 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | exec std_service_logger | |
3 | user=logger | ||
4 | |||
5 | logdir="/var/log/service/`(cd ..;basename $PWD)`" | ||
6 | mkdir -p "$logdir" 2>/dev/null | ||
7 | chown -R "$user": "$logdir" | ||
8 | chmod -R go-rwxst,u+rwX "$logdir" | ||
9 | rm -rf logdir | ||
10 | ln -s "$logdir" logdir | ||
11 | |||
12 | # make this dir accessible to logger | ||
13 | chmod a+rX . | ||
14 | |||
15 | exec >/dev/null | ||
16 | exec 2>&1 | ||
17 | exec \ | ||
18 | env - PATH="$PATH" \ | ||
19 | softlimit \ | ||
20 | setuidgid "$user" \ | ||
21 | svlogd -tt "$logdir" | ||
diff --git a/examples/var_service/ftpd/p_log b/examples/var_service/ftpd/p_log deleted file mode 100755 index a2521be05..000000000 --- a/examples/var_service/ftpd/p_log +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | cd log/logdir || exit 1 | ||
4 | cat @* current | $PAGER | ||
diff --git a/examples/var_service/ftpd/w_log b/examples/var_service/ftpd/w_log deleted file mode 100755 index aa36ef13b..000000000 --- a/examples/var_service/ftpd/w_log +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | cd log/logdir || exit 1 | ||
4 | watch -n2 'w=`ttysize w`; h=`ttysize h`; tail -$((h-3)) current 2>&1 | cut -b1-$((w-2))' | ||