Port monit to -ng

git-svn-id: svn://svn.openwrt.org/openwrt/packages@4467 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2006-08-05 16:12:53 +00:00
parent a78842977e
commit b77b39d49f
2 changed files with 111 additions and 0 deletions

86
admin/monit/Makefile Normal file
View File

@ -0,0 +1,86 @@
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=monit
PKG_VERSION:=4.6
PKG_RELEASE:=1
PKG_MD5SUM:=4e53aa44e4ca264e61c7c401cee4e697
PKG_SOURCE_URL:=http://www.tildeslash.com/monit/dist/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
define Package/monit
SECTION:=admin
CATEGORY:=Administration
DEPENDS:=+libpthread +libopenssl
TITLE:=System services monitoring utility, with SSL support
DESCRIPTION:=An utility for monitoring services on a Unix system\\\
This package is built with SSL support.\\\
URL:=http://www.tildeslash.com/monit
endef
define Package/monit/conffiles
/etc/monitrc
endef
define Package/monit-nossl
SECTION:=admin
CATEGORY:=Administration
TITLE:=System services monitoring utility, without SSL support
DESCRIPTION:=An utility for monitoring services on a Unix system.\\\
This package is built without SSL support.\\\
URL:=http://www.tildeslash.com/monit
endef
define Package/monit/conffiles
/etc/monitrc
endef
define Build/Configure
$(call Build/Configure/Default,--with-ssl \
--with-ssl-dir="$(STAGING_DIR)/usr" \
)
$(MAKE) -C $(PKG_BUILD_DIR)
mv $(PKG_BUILD_DIR)/monit $(PKG_BUILD_DIR)/monit-ssl
$(MAKE) -C $(PKG_BUILD_DIR) clean
$(call Build/Configure/Default,--without-ssl)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
clean all
mv $(PKG_BUILD_DIR)/monit $(PKG_BUILD_DIR)/monit-nossl
endef
define Package/monit/install
install -d -m0755 $(1)/etc
install -m0600 $(PKG_BUILD_DIR)/monitrc $(1)/etc/
install -d -m0755 $(1)/etc/init.d
install -m0755 ./files/monit.init $(1)/etc/init.d/monit
install -d -m0755 $(1)/usr/sbin
install -m0755 $(PKG_BUILD_DIR)/monit-ssl $(1)/usr/sbin/monit
endef
define Package/monit-nossl/install
install -d -m0755 $(1)/etc
install -m0600 $(PKG_BUILD_DIR)/monitrc $(1)/etc/
install -d -m0755 $(1)/etc/init.d
install -m0755 ./files/monit.init $(1)/etc/init.d/monit
install -d -m0755 $(1)/usr/sbin
install -m0755 $(PKG_BUILD_DIR)/monit-nossl $(1)/usr/sbin/monit
endef
$(eval $(call BuildPackage,monit))
$(eval $(call BuildPackage,monit-nossl))

View File

@ -0,0 +1,25 @@
#!/bin/sh
BIN=monit
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
[ -f $DEFAULT ] && . $DEFAULT
case $1 in
start)
mkdir -p $RUN_D
$BIN $OPTIONS
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F)
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 (start|stop|restart)"
exit 1
esac
exit $?