diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-20 09:09:55 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-20 09:09:55 +0000 |
commit | 1f34df82b10ab98c38c1fd9687fc523535818492 (patch) | |
tree | 376ce946223fd7e2d6e8164af4c6d630b5b1c5cc /openwrt/package/monit/Config.in | |
parent | 680ed499d4094154c01a9c0c97b91499bb508d39 (diff) |
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
Diffstat (limited to 'openwrt/package/monit/Config.in')
-rw-r--r-- | openwrt/package/monit/Config.in | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/openwrt/package/monit/Config.in b/openwrt/package/monit/Config.in index 3410a992c7..2472158895 100644 --- a/openwrt/package/monit/Config.in +++ b/openwrt/package/monit/Config.in @@ -1,10 +1,31 @@ +config BR2_COMPILE_MONIT + bool + default n + depends BR2_PACKAGE_MONIT || BR2_PACKAGE_MONIT_NOSSL + 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_LIBOPENSSL default m if CONFIG_DEVEL 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/ + + +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/ -
\ No newline at end of file |