mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
Merge pull request #6847 from pprindeville/syslog-ng-prerm
syslog-ng: stop service when uninstalling/updating
This commit is contained in:
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=syslog-ng
|
PKG_NAME:=syslog-ng
|
||||||
PKG_VERSION:=3.17.2
|
PKG_VERSION:=3.17.2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
||||||
|
|
||||||
@@ -74,4 +74,19 @@ define Package/syslog-ng/install
|
|||||||
$(call libtool_remove_files,$(1))
|
$(call libtool_remove_files,$(1))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/syslog-ng/prerm
|
||||||
|
#!/bin/sh
|
||||||
|
# check if we are on real system
|
||||||
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
||||||
|
# wish we had pidof unconditionally
|
||||||
|
pid=$(ps | grep syslog | grep -v grep | awk '{ print $$1; }')
|
||||||
|
[ -n "$$pid" ] && /etc/init.d/syslog-ng stop
|
||||||
|
[ "$${PKG_UPGRADE}" != "1" ] && {
|
||||||
|
echo "Removing rc.d symlink for syslog-ng"
|
||||||
|
/etc/init.d/syslog-ng disable
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
exit 0
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,syslog-ng))
|
$(eval $(call BuildPackage,syslog-ng))
|
||||||
|
|||||||
Reference in New Issue
Block a user