~ubuntu-branches/ubuntu/feisty/syslog-ng/feisty-security

« back to all changes in this revision

Viewing changes to debian/syslog-ng.prerm

  • Committer: Bazaar Package Importer
  • Author(s): SZALAY Attila
  • Date: 2002-03-04 21:29:11 UTC
  • Revision ID: james.westby@ubuntu.com-20020304212911-40evnqxz6a46kojt
Tags: 1.5.15-1
* New upstream version.
* Doesn't drop connections to the floor on reload. Closes: #129819, #132708

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = "remove" ]; then
 
6
   if [ -x /etc/init.d/syslog-ng ]; then
 
7
         /etc/init.d/syslog-ng stop 
 
8
   fi
 
9
fi
 
10
 
 
11
#DEBHELPER#
 
12
 
 
13
exit 0