diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/exilog.init | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 1423a36..e619652 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +exilog (0.5-4) etch; urgency=low + + * only start, if exilog.conf is in place + + -- Andreas Unterkircher <unki@mm-karton.com> Sat, 29 Nov 2008 13:47:22 +0100 + exilog (0.5-3) etch; urgency=low * add init.d script diff --git a/debian/exilog.init b/debian/exilog.init index 532dac0..6bb9e66 100644 --- a/debian/exilog.init +++ b/debian/exilog.init @@ -22,6 +22,11 @@ if [ -f /etc/default/exilog ] ; then . /etc/default/exilog fi +if [ ! -f /etc/exilog/exilog.conf ] ; then + echo "create exilog.conf first!" + exit 0 +fi + set -e case "$1" in |