aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/openprotium-init/files/initscripts/syslog.file
blob: 80ee5f0174c45c17eba2da5f2451d510483432df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
#
# Invoke the syslog startup if the configuration
# uses 'file' (and, optionally, buffer) as the DESTINATION
DESTINATION=
test -f /etc/syslog.conf && . /etc/syslog.conf
doit=

for d in $DESTINATION
do
	case "$d" in
	buffer)	:;;
	file)	doit=1;;
	remote)	exit 0;;
	*)	echo "/etc/syslog.conf: $d: unknown destination" >&2
		exit 1;;
	esac
done

test -n "$doit" -a -x /etc/init.d/syslog &&
	exec /etc/init.d/syslog "$@"

exit 0