add more service examples

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2009-11-08 00:55:39 +01:00
parent 44f8d01399
commit f5c2f72917
21 changed files with 689 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
# [ADDR:]service_name must be in /etc/services, or port number
# socket_type stream/dgram/raw/rdm/seqpacket
# protocol tcp/udp
# wait/nowait[.max] wait is usually for udp, nowait for tcp
# max: max copies to run
# user[.group] or user[:group] user and group to run under
# binary program to run
# arg0 arg1 arg2... arguments, INCLUDING program name (arg0)
# serv socket pro w/nw user binary args
# IPv6
555 dgram udp6 wait root echo echo Hello IPv6 udp world
# ...with ADDR prefix:
::1:444 stream tcp6 nowait root echo echo Hello IPv6 localhost
# Rarely seen case: tcp *wait* service
telnet stream tcp wait root telnetd telnetd -w10

View File

@@ -0,0 +1,21 @@
#!/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 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"

View File

@@ -0,0 +1,4 @@
#!/bin/sh
cd log/logdir || exit 1
cat @* current | $PAGER

17
examples/var_service/inetd/run Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
#exec >/dev/null
exec 2>&1
exec </dev/null
echo "* Starting inetd [$$]"
exec \
env - PATH="$PATH" \
softlimit \
inetd -f -e "$PWD/inetd.conf"
# inetd [-f] [-q len] [conf]
# -f Run in foreground
# -e Log to stderr (default is syslog)
# -q N Set the size of the socket listen queue to N
# (default: 128)

View File

@@ -0,0 +1,4 @@
#!/bin/sh
cd log/logdir || exit 1
watch -n2 'w=`ttysize w`; h=`ttysize h`; tail -$((h-3)) current 2>&1 | cut -b0-$((w-2))'