diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2007-10-13 07:59:23 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2007-10-13 07:59:23 +0000 |
commit | e72238e5cce48e63ab689b70fdfe7f1aeb2d82bb (patch) | |
tree | cd2353581de9135d8d25dd779b34e6e407be341c | |
parent | f98f9e310682cd77180ef49e5fda0994d973336e (diff) | |
download | sitesummary-e72238e5cce48e63ab689b70fdfe7f1aeb2d82bb.tar.gz sitesummary-e72238e5cce48e63ab689b70fdfe7f1aeb2d82bb.tar.bz2 sitesummary-e72238e5cce48e63ab689b70fdfe7f1aeb2d82bb.tar.xz |
* Fix typo in server cron job. Can't use nice on a shell function.
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/sitesummary.cron.daily | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index d8a4108..27aa076 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ sitesummary (0.0.29) unstable; urgency=low * Add get_hostclass() to the SiteSummary perl module API. * Add host class summary to the default list of web reports. + * Fix typo in server cron job. Can't use nice on a shell function. -- Petter Reinholdtsen <pere@debian.org> Fri, 12 Oct 2007 19:14:29 +0200 diff --git a/debian/sitesummary.cron.daily b/debian/sitesummary.cron.daily index 23f2e3b..479b52f 100755 --- a/debian/sitesummary.cron.daily +++ b/debian/sitesummary.cron.daily @@ -63,7 +63,7 @@ EOF # Only enable if munin is installed. if [ -f /etc/munin/munin.conf ] && [ -x /usr/sbin/sitesummary-nodes ]; then - nice generate_munin_config + generate_munin_config fi [ -d $entriesdir ] && remove_old_entries |