-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
76 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,63 @@ | ||
2019-03-15 Tomas Mraz <[email protected]> | ||
|
||
* Fix warnings in anacron and crond code. | ||
|
||
2019-03-15 Tomas Mraz <[email protected]> | ||
|
||
* Fix CVE-2019-9704 and CVE-2019-9705 | ||
|
||
2019-03-15 Tomas Mraz <[email protected]> | ||
|
||
* Remove leftover debugging message. | ||
|
||
2019-03-11 Marcel Plch <[email protected]> | ||
|
||
* Make crond run after autofs mounts | ||
|
||
2019-02-15 Tomas Mraz <[email protected]> | ||
|
||
* crontab: Make crontab without arguments fail. | ||
|
||
2018-12-07 Marcel Plch <[email protected]> | ||
|
||
* Use system-auth instead of password-auth for PAM authentication (#25) | ||
|
||
2018-11-23 Marcel Plch <[email protected]> | ||
|
||
* Restart crond if it fails | ||
|
||
2018-11-19 Tomas Mraz <[email protected]> | ||
|
||
* load_env: parse the environment variables in-place | ||
|
||
2018-11-19 Tomáš Mráz <[email protected]> | ||
|
||
* Update readme.md with the latest release and better link to Fedora | ||
|
||
2018-11-18 Oliver Kurz <[email protected]> | ||
|
||
* readme.md: Replace dead link to openSUSE ML with package link | ||
|
||
2018-10-18 Tomas Mraz <[email protected]> | ||
|
||
* Use the role from the crond context for system job contexts. | ||
|
||
2018-08-28 Marcel Plch <[email protected]> | ||
|
||
* Fix unsafe code | ||
|
||
2018-08-28 Marcel Plch <[email protected]> | ||
|
||
* Fix possible memory leaks | ||
|
||
2018-05-03 Tomas Mraz <[email protected]> | ||
|
||
* Release new version 1.5.2 | ||
|
||
2018-05-03 Tomas Mraz <[email protected]> | ||
|
||
* Silence may be used uninitialized warning. | ||
|
||
2018-05-03 Tomas Mraz <[email protected]> | ||
|
||
* crontab: do not try to replace the crontab with a directory | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AC_INIT([cronie],[1.5.2],[[email protected],[email protected]]) | ||
AC_INIT([cronie],[1.5.3],[[email protected],[email protected]]) | ||
AC_CONFIG_HEADER([config.h]) | ||
AC_PREREQ(2.60) | ||
|
||
|