diff options
Diffstat (limited to 'examples/var_service/httpd')
-rw-r--r-- | examples/var_service/httpd/README | 5 | ||||
-rwxr-xr-x | examples/var_service/httpd/log/run | 21 | ||||
-rwxr-xr-x | examples/var_service/httpd/p_log | 4 | ||||
-rwxr-xr-x | examples/var_service/httpd/w_log | 4 |
4 files changed, 1 insertions, 33 deletions
diff --git a/examples/var_service/httpd/README b/examples/var_service/httpd/README deleted file mode 100644 index 4ddccb2..0000000 --- a/examples/var_service/httpd/README +++ /dev/null @@ -1,5 +0,0 @@ -The real README file is one directory up. - -This directory's run script can have useful comments. -If it doesn't but you feel it should, please send a patch -to busybox's mailing list. diff --git a/examples/var_service/httpd/log/run b/examples/var_service/httpd/log/run index 69d74b7..756be4e 100755 --- a/examples/var_service/httpd/log/run +++ b/examples/var_service/httpd/log/run @@ -1,21 +1,2 @@ #!/bin/sh - -user=logger - -logdir="/var/log/service/`(cd ..;basename $PWD)`" -mkdir -p "$logdir" 2>/dev/null -chown -R "$user": "$logdir" -chmod -R go-rwxst,u+rwX "$logdir" -rm -rf logdir -ln -s "$logdir" logdir - -# make this dir accessible to logger -chmod a+rX . - -exec >/dev/null -exec 2>&1 -exec \ -env - PATH="$PATH" \ -softlimit \ -setuidgid "$user" \ -svlogd -tt "$logdir" +exec std_service_logger diff --git a/examples/var_service/httpd/p_log b/examples/var_service/httpd/p_log deleted file mode 100755 index a2521be..0000000 --- a/examples/var_service/httpd/p_log +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cd log/logdir || exit 1 -cat @* current | $PAGER diff --git a/examples/var_service/httpd/w_log b/examples/var_service/httpd/w_log deleted file mode 100755 index aa36ef1..0000000 --- a/examples/var_service/httpd/w_log +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cd log/logdir || exit 1 -watch -n2 'w=`ttysize w`; h=`ttysize h`; tail -$((h-3)) current 2>&1 | cut -b1-$((w-2))' |