From 52dbddc0c7ee111fdf9086413db415c4e944777b Mon Sep 17 00:00:00 2001 From: cyrus Date: Wed, 11 Jun 2014 08:57:37 +0000 Subject: [PATCH] monit: moved to github git-svn-id: svn://svn.openwrt.org/openwrt/packages@41103 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- admin/monit/Makefile | 91 -------------------------------------------- admin/monit/files/monit.init | 16 -------- 2 files changed, 107 deletions(-) delete mode 100644 admin/monit/Makefile delete mode 100644 admin/monit/files/monit.init diff --git a/admin/monit/Makefile b/admin/monit/Makefile deleted file mode 100644 index a6a4dfb1a..000000000 --- a/admin/monit/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# -# Copyright (C) 2006-2014 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=monit -PKG_VERSION:=5.6 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://mmonit.com/monit/dist -PKG_MD5SUM:=19dfc1ce8512e832134d06eedd96ba50 - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) -PKG_INSTALL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/monit/Default - SECTION:=admin - CATEGORY:=Administration - DEPENDS:= +libpthread - TITLE:=System services monitoring utility - URL:=http://mmonit.com/monit/ -endef - -define Package/monit/Default/description - An utility for monitoring services on a Unix system -endef - -define Package/monit -$(call Package/monit/Default) - DEPENDS+= +libopenssl - TITLE+= (with SSL support) - VARIANT:=ssl -endef - -define Package/monit/description -$(call Package/monit/Default/description) - This package is built with SSL support. -endef - -define Package/monit-nossl -$(call Package/monit/Default) - TITLE+= (without SSL support) - VARIANT:=nossl -endef - -define Package/monit-nossl/description -$(call Package/monit/Default/description) - This package is built without SSL support. -endef - -CONFIGURE_ARGS += \ - --without-pam \ - libmonit_cv_setjmp_available=yes \ - libmonit_cv_vsnprintf_c99_conformant=yes - -ifeq ($(BUILD_VARIANT),ssl) - CONFIGURE_ARGS += \ - --with-ssl \ - --with-ssl-dir="$(STAGING_DIR)/usr" -endif - -ifeq ($(BUILD_VARIANT),nossl) - CONFIGURE_ARGS += \ - --without-ssl -endif - -define Package/monit/conffiles -/etc/monitrc -endef - -define Package/monit/install - $(INSTALL_DIR) $(1)/etc - $(INSTALL_CONF) $(PKG_BUILD_DIR)/monitrc $(1)/etc/ - $(INSTALL_DIR) $(1)/etc/init.d - $(INSTALL_BIN) ./files/monit.init $(1)/etc/init.d/monit - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/monit $(1)/usr/bin/ -endef - -Package/monit-nossl/conffiles = $(Package/monit/conffiles) -Package/monit-nossl/install = $(Package/monit/install) - -$(eval $(call BuildPackage,monit)) -$(eval $(call BuildPackage,monit-nossl)) diff --git a/admin/monit/files/monit.init b/admin/monit/files/monit.init deleted file mode 100644 index b8a8ff824..000000000 --- a/admin/monit/files/monit.init +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2006-2013 OpenWrt.org - -START=60 - -SERVICE_USE_PID=1 - -start() { - [ -f /etc/monitrc ] || return 1 - chmod 0600 /etc/monitrc - service_start /usr/bin/monit -} - -stop() { - service_stop /usr/bin/monit -} -- 2.11.0