diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-10-20 09:09:55 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-10-20 09:09:55 +0000 |
commit | 941881371fd68d93cc26a302bb4cbf58d994787b (patch) | |
tree | d30515f5af744a6f850b22c6928571d767f3c9c8 /package/monit/Config.in | |
parent | 67fdfc081baac5bdd5612beb7fe4dd9a5614b277 (diff) | |
download | upstream-941881371fd68d93cc26a302bb4cbf58d994787b.tar.gz upstream-941881371fd68d93cc26a302bb4cbf58d994787b.tar.bz2 upstream-941881371fd68d93cc26a302bb4cbf58d994787b.zip |
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/openwrt@2193 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/monit/Config.in')
-rw-r--r-- | package/monit/Config.in | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/package/monit/Config.in b/package/monit/Config.in index 3410a992c7..2472158895 100644 --- a/package/monit/Config.in +++ b/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 |