0f49d787eb
Syslog is now started outside of the normal init process
10 lines
216 B
Bash
Executable file
10 lines
216 B
Bash
Executable file
#! /bin/sh
|
|
QUAYPATH=${QUAYPATH:-"."}
|
|
QUAYCONF=${QUAYCONF:-"$QUAYPATH/conf"}
|
|
|
|
cd ${QUAYDIR:-"/"}
|
|
|
|
if [ -e $QUAYCONF/stack/syslog-ng-extra.conf ]
|
|
then
|
|
cp $QUAYCONF/stack/syslog-ng-extra.conf /etc/syslog-ng/conf.d/
|
|
fi
|