summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2008-11-06 15:00:06 +0000
committerJoshua Lock <josh@linux.intel.com>2008-11-06 15:00:06 +0000
commit1e6f21407fb80832473efa38875c232bce89d32f (patch)
tree7754749c57fa1ca930d4dd16c04e1921a7e6bdd6 /meta
parent9e8d22ae3868b6ea6ebdd64be64b1202b90fe593 (diff)
downloadpoky-1e6f21407fb80832473efa38875c232bce89d32f.tar.gz
monit 4.10.1 from OE
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/monit/monit-4.10.1/init42
-rw-r--r--meta/packages/monit/monit_4.10.1.bb24
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#
7monit=/usr/bin/monit
8pidfile=/var/run/monit.pid
9monit_args="-c /etc/monitrc"
10
11test -x "$monit" || exit 0
12
13case "$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
39esac
40
41exit $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 @@
1LICENSE = "GPL"
2DEPENDS = "openssl"
3
4SRC_URI = "http://www.tildeslash.com/monit/dist/monit-${PV}.tar.gz\
5 file://init"
6
7INITSCRIPT_NAME = "monit"
8INITSCRIPT_PARAMS = "defaults 99"
9
10inherit autotools update-rc.d
11
12EXTRA_OECONF = "--with-ssl-lib-dir=${STAGING_LIBDIR} --with-ssl-incl-dir=${STAGING_INCDIR}"
13
14do_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
23CONFFILES_${PN} += "${sysconfdir}/monitrc"
24