add more service examples
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
18
examples/var_service/inetd/inetd.conf
Normal file
18
examples/var_service/inetd/inetd.conf
Normal 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
|
21
examples/var_service/inetd/log/run
Executable file
21
examples/var_service/inetd/log/run
Executable 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"
|
4
examples/var_service/inetd/p_log
Executable file
4
examples/var_service/inetd/p_log
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd log/logdir || exit 1
|
||||
cat @* current | $PAGER
|
17
examples/var_service/inetd/run
Executable file
17
examples/var_service/inetd/run
Executable 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)
|
4
examples/var_service/inetd/w_log
Executable file
4
examples/var_service/inetd/w_log
Executable 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))'
|
Reference in New Issue
Block a user