diff options
-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 |