diff options
author | Bruno Randolf <br1@subnet.at> | 2004-12-01 19:43:27 +0000 |
---|---|---|
committer | Bruno Randolf <br1@subnet.at> | 2004-12-01 19:43:27 +0000 |
commit | 4f7d2b1b63d166e5de146d71e5c942419424446e (patch) | |
tree | 605840f6b62a8b45f3fd55dd82d57297c410d0a7 /nylon | |
parent | 0d8fd82430349db32917c2f6ea52d4ab39059217 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages
into null.(none):/data/mtx/oe/packages
2004/12/01 20:42:56+01:00 (none)!br1
homepage and/or license added
BKrev: 41ae1edfXnkBbPvQcHu4aVzh5g_Sqw
Diffstat (limited to 'nylon')
-rw-r--r-- | nylon/nylon-scripts_cvs.oe | 5 | ||||
-rw-r--r-- | nylon/nylon-statistics.oe | 34 |
2 files changed, 37 insertions, 2 deletions
diff --git a/nylon/nylon-scripts_cvs.oe b/nylon/nylon-scripts_cvs.oe index 39dbaedcaf..a7f9a3ae15 100644 --- a/nylon/nylon-scripts_cvs.oe +++ b/nylon/nylon-scripts_cvs.oe @@ -1,9 +1,10 @@ -DESCRIPTION = "This package provides the mtx specific init and configuration scripts." +DESCRIPTION = "This package provides the nylon specific init and configuration scripts." +HOMEPAGE = "http://meshcube.org/meshwiki/NyLon" DEPENDS = "hostap-utils" SECTION = "base" PRIORITY = "optional" MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>" -LICENSE = "GPL" +LICENSE = "GPLv2" PR = "r1" SRC_URI = "svn://meshcube.org/svn/scripts;module=${PN}" diff --git a/nylon/nylon-statistics.oe b/nylon/nylon-statistics.oe index e69de29bb2..c09773cff9 100644 --- a/nylon/nylon-statistics.oe +++ b/nylon/nylon-statistics.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "statistics & graphing for nylon" +RDEPENDS = "rrdtool" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>" +LICENSE = "GPLv2" + +SRC_URI = "svn://meshcube.org/svn/application;module=${PN}" +S = "${WORKDIR}/${PN}" + +do_install() { + install -d ${D}/srv/www/cgi-bin + install -d ${D}/${sbindir} + ln -s /var/tmp ${D}/srv/www/rrd-img + install -m 755 ${S}/*.html ${D}/srv/www/cgi-bin + install -m 755 ${S}/collect.sh ${D}/${sbindir} +} + +pkg_postinst() { +if test "x$D" == "x"; then + mkdir -p /etc/cron/crontabs + if ! grep -q collect.sh /etc/cron/crontabs/root; then + echo "adding crontab" + echo "*/5 * * * * /usr/sbin/collect.sh" >> /etc/cron/crontabs/root + fi + update-rc.d -s busybox-cron defaults + if [ ! -e /etc/httpd.conf ]; then + echo "A:*" > /etc/httpd.conf + fi + update-rc.d -s busybox-httpd defaults +fi +} + +FILES_${PN} += "/srv"
\ No newline at end of file |