From: Tomas Mraz Date: Fri, 15 Mar 2019 10:20:30 +0000 (+0100) Subject: Release new version 1.5.3 X-Git-Tag: cronie-1.5.3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb57fff2699127d4cf20235db51b32d7998b89b9;p=cronie Release new version 1.5.3 --- diff --git a/ChangeLog b/ChangeLog index 94e2916..a151496 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,63 @@ +2019-03-15 Tomas Mraz + + * Fix warnings in anacron and crond code. + +2019-03-15 Tomas Mraz + + * Fix CVE-2019-9704 and CVE-2019-9705 + +2019-03-15 Tomas Mraz + + * Remove leftover debugging message. + +2019-03-11 Marcel Plch + + * Make crond run after autofs mounts + +2019-02-15 Tomas Mraz + + * crontab: Make crontab without arguments fail. + +2018-12-07 Marcel Plch + + * Use system-auth instead of password-auth for PAM authentication (#25) + +2018-11-23 Marcel Plch + + * Restart crond if it fails + +2018-11-19 Tomas Mraz + + * load_env: parse the environment variables in-place + +2018-11-19 Tomáš Mráz + + * Update readme.md with the latest release and better link to Fedora + +2018-11-18 Oliver Kurz + + * readme.md: Replace dead link to openSUSE ML with package link + +2018-10-18 Tomas Mraz + + * Use the role from the crond context for system job contexts. + +2018-08-28 Marcel Plch + + * Fix unsafe code + +2018-08-28 Marcel Plch + + * Fix possible memory leaks + +2018-05-03 Tomas Mraz + + * Release new version 1.5.2 + +2018-05-03 Tomas Mraz + + * Silence may be used uninitialized warning. + 2018-05-03 Tomas Mraz * crontab: do not try to replace the crontab with a directory diff --git a/INSTALL b/INSTALL index 9f40603..9917612 100644 --- a/INSTALL +++ b/INSTALL @@ -1,22 +1,14 @@ Basic Installation ================== -In the vixie-cron directory run: -autoreconf -These commands create from configure.ac executable ./configure - -Then you can start installation: +Run the usual autotools combination of: +./configure make make install -The executable files will be installed in /usr/local/* - -Options -======= -In the default package are used configure options: ---with-pam ---with-selinux ---with-audit - - +The executable files will be installed in /usr/local/* by default. +Configure Options +================= +Please see the ./configure --help output for available build-time +options. diff --git a/NEWS b/NEWS index 680a7a6..49fecb2 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ cronie NEWS -- history of user-visible changes. +Release 1.5.3 +* Fix CVE-2019-9704 and CVE-2019-9705 to avoid local DoS of the crond. +* crontab: Make crontab without arguments fail. +* crond: In PAM configuration include system-auth instead of password-auth. +* crond: In the systemd service file restart crond if it fails. +* crond: Use the role from the crond context for system job contexts. +* Multiple small cleanups and fixes. + Release 1.5.2 * cronnext: New useful utility to find out time of the next job run. diff --git a/configure.ac b/configure.ac index 1c66fa9..bab48c4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([cronie],[1.5.2],[mmaslano@redhat.com,tmraz@fedoraproject.org]) +AC_INIT([cronie],[1.5.3],[mmaslano@redhat.com,tmraz@fedoraproject.org]) AC_CONFIG_HEADER([config.h]) AC_PREREQ(2.60)