summaryrefslogtreecommitdiff
path: root/packages/nylon/nylon-statistics.bb
diff options
context:
space:
mode:
authornslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>2005-01-05 13:40:07 +0000
committernslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>2005-01-05 13:40:07 +0000
commitdac910112c834ece2c41714f9e01133ad625efdb (patch)
tree31b5dd260eed5d3cb5570c8fd67841a765d1cd4b /packages/nylon/nylon-statistics.bb
parented63aea30c21a9377f3841308631d6f6b90eb1cb (diff)
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded 2005/01/05 14:27:25+01:00 (none)!br1 nylon-statistics 2005/01/05 14:20:50+01:00 (none)!br1 improved postinst for nylon-scripts, nylon-statistics, ntp (nylon) and prism2-firmware-update BKrev: 41dbee37nRSzsrYX2DJsbnG6pcc5bQ
Diffstat (limited to 'packages/nylon/nylon-statistics.bb')
-rw-r--r--packages/nylon/nylon-statistics.bb7
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/nylon/nylon-statistics.bb b/packages/nylon/nylon-statistics.bb
index aef674b6b2..060e6182d0 100644
--- a/packages/nylon/nylon-statistics.bb
+++ b/packages/nylon/nylon-statistics.bb
@@ -18,13 +18,16 @@ do_install() {
}
pkg_postinst() {
-if test "x$D" == "x"; then
- mkdir -p /etc/cron/crontabs
+if test "x$D" != "x"; then
+ exit 1
+else
if ! grep -q collect.sh /etc/cron/crontabs/root; then
echo "adding crontab"
+ test -d /etc/cron/crontabs || mkdir -p /etc/cron/crontabs
echo "*/5 * * * * /usr/sbin/collect.sh" >> /etc/cron/crontabs/root
fi
update-rc.d -s busybox-cron defaults
+ /etc/init.d/busybox-cron reload
if [ ! -e /etc/httpd.conf ]; then
echo "A:*" > /etc/httpd.conf
fi