mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-14 07:43:08 +02:00
update monit to new upstream release (v4.6),
split in 2 packages (w/ and w/o ssl support), add a restart command to init-script. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2193 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
680ed499d4
commit
1f34df82b1
@ -110,7 +110,7 @@ package-$(BR2_PACKAGE_MICROCOM) += microcom
|
|||||||
package-$(BR2_PACKAGE_MICROPERL) += microperl
|
package-$(BR2_PACKAGE_MICROPERL) += microperl
|
||||||
package-$(BR2_COMPILE_MINI_HTTPD) += mini_httpd
|
package-$(BR2_COMPILE_MINI_HTTPD) += mini_httpd
|
||||||
package-$(BR2_PACKAGE_MINI_SENDMAIL) += mini_sendmail
|
package-$(BR2_PACKAGE_MINI_SENDMAIL) += mini_sendmail
|
||||||
package-$(BR2_PACKAGE_MONIT) += monit
|
package-$(BR2_COMPILE_MONIT) += monit
|
||||||
package-$(BR2_PACKAGE_MPD) += mpd
|
package-$(BR2_PACKAGE_MPD) += mpd
|
||||||
package-$(BR2_PACKAGE_MT_DAAPD) += mt-daapd
|
package-$(BR2_PACKAGE_MT_DAAPD) += mt-daapd
|
||||||
package-$(BR2_PACKAGE_MTD) += mtd
|
package-$(BR2_PACKAGE_MTD) += mtd
|
||||||
|
@ -1,10 +1,31 @@
|
|||||||
|
config BR2_COMPILE_MONIT
|
||||||
|
bool
|
||||||
|
default n
|
||||||
|
depends BR2_PACKAGE_MONIT || BR2_PACKAGE_MONIT_NOSSL
|
||||||
|
|
||||||
config BR2_PACKAGE_MONIT
|
config BR2_PACKAGE_MONIT
|
||||||
tristate "monit - System services monitoring utility"
|
tristate "monit - System services monitoring utility, with SSL support"
|
||||||
|
select BR2_COMPILE_MONIT
|
||||||
select BR2_PACKAGE_LIBPTHREAD
|
select BR2_PACKAGE_LIBPTHREAD
|
||||||
|
select BR2_PACKAGE_LIBOPENSSL
|
||||||
default m if CONFIG_DEVEL
|
default m if CONFIG_DEVEL
|
||||||
help
|
help
|
||||||
utility for monitoring services on a Unix system
|
An utility for monitoring services on a Unix system
|
||||||
|
|
||||||
|
This package is built with SSL support.
|
||||||
|
|
||||||
http://www.tildeslash.com/monit/
|
http://www.tildeslash.com/monit/
|
||||||
|
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MONIT_NOSSL
|
||||||
|
tristate "monit-nossl - System services monitoring utility, without SSL support"
|
||||||
|
select BR2_COMPILE_MONIT
|
||||||
|
select BR2_PACKAGE_LIBPTHREAD
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
help
|
||||||
|
An utility for monitoring services on a Unix system.
|
||||||
|
|
||||||
|
This package is built without SSL support.
|
||||||
|
|
||||||
|
http://www.tildeslash.com/monit/
|
||||||
|
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=monit
|
PKG_NAME:=monit
|
||||||
PKG_VERSION:=4.5.1
|
PKG_VERSION:=4.6
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=0f054ac39822b4be71789d49e4813754
|
PKG_MD5SUM:=4e53aa44e4ca264e61c7c401cee4e697
|
||||||
|
|
||||||
PKG_SOURCE_URL:=http://www.tildeslash.com/monit/dist/
|
PKG_SOURCE_URL:=http://www.tildeslash.com/monit/dist/
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
@ -16,8 +16,43 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
$(eval $(call PKG_template,MONIT,monit,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
$(eval $(call PKG_template,MONIT,monit,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
$(eval $(call PKG_template,MONIT_NOSSL,monit-nossl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
ifneq ($(BR2_PACKAGE_MONIT),)
|
||||||
|
( cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/sbin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
--with-ssl \
|
||||||
|
--with-ssl-dir="$(STAGING_DIR)/usr" \
|
||||||
|
);
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
||||||
|
( cd $(PKG_BUILD_DIR); mv monit monit-ssl; )
|
||||||
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_MONIT),)
|
||||||
( cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
( cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
@ -43,10 +78,10 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
|||||||
$(DISABLE_NLS) \
|
$(DISABLE_NLS) \
|
||||||
--without-ssl \
|
--without-ssl \
|
||||||
);
|
);
|
||||||
touch $@
|
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR)
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
||||||
|
( cd $(PKG_BUILD_DIR); mv monit monit-nossl; )
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) clean
|
||||||
|
endif
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(IPKG_MONIT):
|
$(IPKG_MONIT):
|
||||||
@ -55,6 +90,16 @@ $(IPKG_MONIT):
|
|||||||
install -d -m0755 $(IDIR_MONIT)/etc/init.d
|
install -d -m0755 $(IDIR_MONIT)/etc/init.d
|
||||||
install -m0755 ./files/monit.init $(IDIR_MONIT)/etc/init.d/monit
|
install -m0755 ./files/monit.init $(IDIR_MONIT)/etc/init.d/monit
|
||||||
install -d -m0755 $(IDIR_MONIT)/usr/sbin
|
install -d -m0755 $(IDIR_MONIT)/usr/sbin
|
||||||
cp -fpR $(PKG_BUILD_DIR)/monit $(IDIR_MONIT)/usr/sbin/
|
install -m0755 $(PKG_BUILD_DIR)/monit-ssl $(IDIR_MONIT)/usr/sbin/monit
|
||||||
$(STRIP) $(IDIR_MONIT)/usr/sbin/monit
|
$(RSTRIP) $(IDIR_MONIT)
|
||||||
$(IPKG_BUILD) $(IDIR_MONIT) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $(IDIR_MONIT) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
$(IPKG_MONIT_NOSSL):
|
||||||
|
install -d -m0755 $(IDIR_MONIT_NOSSL)/etc
|
||||||
|
install -m0600 $(PKG_BUILD_DIR)/monitrc $(IDIR_MONIT_NOSSL)/etc/
|
||||||
|
install -d -m0755 $(IDIR_MONIT_NOSSL)/etc/init.d
|
||||||
|
install -m0755 ./files/monit.init $(IDIR_MONIT_NOSSL)/etc/init.d/monit
|
||||||
|
install -d -m0755 $(IDIR_MONIT_NOSSL)/usr/sbin
|
||||||
|
install -m0755 $(PKG_BUILD_DIR)/monit-nossl $(IDIR_MONIT_NOSSL)/usr/sbin/monit
|
||||||
|
$(RSTRIP) $(IDIR_MONIT_NOSSL)
|
||||||
|
$(IPKG_BUILD) $(IDIR_MONIT_NOSSL) $(PACKAGE_DIR)
|
||||||
|
@ -14,8 +14,12 @@ case $1 in
|
|||||||
stop)
|
stop)
|
||||||
[ -f $PID_F ] && kill $(cat $PID_F)
|
[ -f $PID_F ] && kill $(cat $PID_F)
|
||||||
;;
|
;;
|
||||||
|
restart)
|
||||||
|
$0 stop
|
||||||
|
$0 start
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "usage: $0 (start|stop)"
|
echo "usage: $0 (start|stop|restart)"
|
||||||
exit 1
|
exit 1
|
||||||
esac
|
esac
|
||||||
exit $?
|
exit $?
|
||||||
|
1
openwrt/package/monit/ipkg/monit-nossl.conffiles
Normal file
1
openwrt/package/monit/ipkg/monit-nossl.conffiles
Normal file
@ -0,0 +1 @@
|
|||||||
|
/etc/monitrc
|
7
openwrt/package/monit/ipkg/monit-nossl.control
Normal file
7
openwrt/package/monit/ipkg/monit-nossl.control
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: monit-nossl
|
||||||
|
Priority: optional
|
||||||
|
Section: admin
|
||||||
|
Maintainer: Waldemar Brodkorb <wbx@dass-it.de>
|
||||||
|
Source: buildroot internal
|
||||||
|
Description: An utility for system services monitoring, without SSL support.
|
||||||
|
Depends: libpthread
|
@ -3,5 +3,5 @@ Priority: optional
|
|||||||
Section: admin
|
Section: admin
|
||||||
Maintainer: Waldemar Brodkorb <wbx@dass-it.de>
|
Maintainer: Waldemar Brodkorb <wbx@dass-it.de>
|
||||||
Source: buildroot internal
|
Source: buildroot internal
|
||||||
Description: an utility for system services monitoring
|
Description: An utility for system services monitoring, with SSL support.
|
||||||
Depends: libpthread
|
Depends: libpthread, libopenssl
|
||||||
|
Loading…
Reference in New Issue
Block a user