diff options
| -rw-r--r-- | meta/packages/monit/monit-4.10.1/init | 42 | ||||
| -rw-r--r-- | meta/packages/monit/monit_4.10.1.bb | 24 |
2 files changed, 66 insertions, 0 deletions
diff --git a/meta/packages/monit/monit-4.10.1/init b/meta/packages/monit/monit-4.10.1/init new file mode 100644 index 0000000000..325a552b28 --- /dev/null +++ b/meta/packages/monit/monit-4.10.1/init | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | # | ||
| 3 | # This is an init script for openembedded | ||
| 4 | # Copy it to /etc/init.d/monit and type | ||
| 5 | # > update-rc.d monit defaults 99 | ||
| 6 | # | ||
| 7 | monit=/usr/bin/monit | ||
| 8 | pidfile=/var/run/monit.pid | ||
| 9 | monit_args="-c /etc/monitrc" | ||
| 10 | |||
| 11 | test -x "$monit" || exit 0 | ||
| 12 | |||
| 13 | case "$1" in | ||
| 14 | start) | ||
| 15 | echo -n "Starting Monit" | ||
| 16 | start-stop-daemon --start --quiet --exec $monit -- $monit_args | ||
| 17 | RETVAL=$? | ||
| 18 | echo "." | ||
| 19 | ;; | ||
| 20 | stop) | ||
| 21 | echo -n "Stopping Monit" | ||
| 22 | start-stop-daemon --stop --quiet --pidfile $pidfile | ||
| 23 | RETVAL=$? | ||
| 24 | echo "." | ||
| 25 | ;; | ||
| 26 | restart) | ||
| 27 | $0 stop | ||
| 28 | $0 start | ||
| 29 | RETVAL=$? | ||
| 30 | ;; | ||
| 31 | status) | ||
| 32 | $monit $monit_args status | ||
| 33 | RETVAL=$? | ||
| 34 | echo "." | ||
| 35 | ;; | ||
| 36 | *) | ||
| 37 | echo "Usage: $0 {start|stop|restart|status}" | ||
| 38 | exit 1 | ||
| 39 | esac | ||
| 40 | |||
| 41 | exit $RETVAL | ||
| 42 | |||
diff --git a/meta/packages/monit/monit_4.10.1.bb b/meta/packages/monit/monit_4.10.1.bb new file mode 100644 index 0000000000..bb18491c5d --- /dev/null +++ b/meta/packages/monit/monit_4.10.1.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | LICENSE = "GPL" | ||
| 2 | DEPENDS = "openssl" | ||
| 3 | |||
| 4 | SRC_URI = "http://www.tildeslash.com/monit/dist/monit-${PV}.tar.gz\ | ||
| 5 | file://init" | ||
| 6 | |||
| 7 | INITSCRIPT_NAME = "monit" | ||
| 8 | INITSCRIPT_PARAMS = "defaults 99" | ||
| 9 | |||
| 10 | inherit autotools update-rc.d | ||
| 11 | |||
| 12 | EXTRA_OECONF = "--with-ssl-lib-dir=${STAGING_LIBDIR} --with-ssl-incl-dir=${STAGING_INCDIR}" | ||
| 13 | |||
| 14 | do_install_append() { | ||
| 15 | install -d ${D}${sysconfdir}/init.d/ | ||
| 16 | install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/monit | ||
| 17 | sed -i 's:# set daemon 120:set daemon 120:' ${S}/monitrc | ||
| 18 | sed -i 's:include /etc/monit.d/:include /${sysconfdir}/monit.d/:' ${S}/monitrc | ||
| 19 | install -m 600 ${S}/monitrc ${D}${sysconfdir}/monitrc | ||
| 20 | install -m 700 -d ${D}${sysconfdir}/monit.d/ | ||
| 21 | } | ||
| 22 | |||
| 23 | CONFFILES_${PN} += "${sysconfdir}/monitrc" | ||
| 24 | |||
