-
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
6 changed files
with
148 additions
and
15 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,107 @@ | ||
2019-10-31 Tomas Mraz <[email protected]> | ||
|
||
* Release new version 1.5.5 | ||
|
||
2019-10-31 Tomas Mraz <[email protected]> | ||
|
||
* Avoid warning for strncat. | ||
|
||
2019-10-29 Christian Kastner <[email protected]> | ||
|
||
* crontab.1: Various fixes and improvements | ||
|
||
2019-10-30 Christian Kastner <[email protected]> | ||
|
||
* crontab: fsync to check for full disk | ||
|
||
2019-10-30 Christian Kastner <[email protected]> | ||
|
||
* crontab: Add Y/N to retry prompt | ||
|
||
2019-10-30 Christian Kastner <[email protected]> | ||
|
||
* entries: Explicitly validate upper ranges and steps | ||
|
||
2019-10-29 Christian Kastner <[email protected]> | ||
|
||
* crond: report missing newline before EOF | ||
|
||
2019-09-09 Christian Hesse <[email protected]> | ||
|
||
* do not log carriage return | ||
|
||
2019-08-22 sgerwk <[email protected]> | ||
|
||
* skip directories when given as crontabs | ||
|
||
2019-07-22 Stephane Blondon <[email protected]> | ||
|
||
* crontab -l colors comment lines in a different color | ||
|
||
2019-07-09 sgerwk <[email protected]> | ||
|
||
* fix compile instruction: configure is generated by autogen.sh | ||
|
||
2019-07-08 Tomas Mraz <[email protected]> | ||
|
||
* getdtablesize() can return very high values in containers | ||
|
||
2019-05-11 John Horne <[email protected]> | ||
|
||
* Power supply name not detected correctly. | ||
|
||
2019-05-07 Tomas Mraz <[email protected]> | ||
|
||
* Revert "Avoid creating pid files when crond doesn't fork" | ||
|
||
2019-04-15 Tomas Mraz <[email protected]> | ||
|
||
* anacron: fix types in comparisons | ||
|
||
2019-03-31 Sami Kerola <[email protected]> | ||
|
||
* mics: stop using plain integer as NULL pointer | ||
|
||
2019-03-31 Sami Kerola <[email protected]> | ||
|
||
* cron: fix type in comparison | ||
|
||
2019-03-31 Sami Kerola <[email protected]> | ||
|
||
* cron: fix variable shadowing | ||
|
||
2019-03-31 Sami Kerola <[email protected]> | ||
|
||
* cron: mark signal number arguments in signal handlers unused | ||
|
||
2019-04-08 Tomáš Mráz <[email protected]> | ||
|
||
* Update readme.md with recent releases | ||
|
||
2019-04-08 Tomas Mraz <[email protected]> | ||
|
||
* Move allowed() and related function to security.c | ||
|
||
2019-03-31 Sami Kerola <[email protected]> | ||
|
||
* build-sys: enable anacron by default | ||
|
||
2019-03-31 Sami Kerola <[email protected]> | ||
|
||
* build-sys: use none-recursive build | ||
|
||
2019-04-02 sgerwk <[email protected]> | ||
|
||
* cronnext: optionally select jobs by substring | ||
|
||
2019-03-18 Tomas Mraz <[email protected]> | ||
|
||
* crond: Do not abort loading crontab prematurely in case of error | ||
|
||
2019-03-18 Tomas Mraz <[email protected]> | ||
|
||
* Release new version 1.5.4 | ||
|
||
2019-03-18 Tomas Mraz <[email protected]> | ||
|
||
* crond: Fix regression from last release | ||
|
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
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,11 +1,13 @@ | ||
17. January 2008 mmaslano (at) redhat (dot) com | ||
Rename the fork on cronie. The source code could be found here: | ||
http://mmaslano.fedorapeople.org/cronie/ or git archive here: | ||
git://git.fedorahosted.org/git/cronie.git | ||
|
||
3. October 2007 mmaslano (at) redhat (dot) com | ||
This is a clone of 'original' vixie-cron. It was used in Red Hat|Fedora | ||
system and patched for a long time. Now was made clone tagged with | ||
version 4.2. | ||
Changes are mainly in git commit messages, some older changes could be | ||
found in spec changelog (contrib/vixie-cron.spec). | ||
Cronie contains the standard UNIX daemon crond that runs specified programs at | ||
scheduled times and related tools. The source is based on the original vixie-cron | ||
and has security and configuration enhancements like the ability to use pam and | ||
SELinux. | ||
|
||
And why cronie? See http://www.urbandictionary.com/define.php?term=cronie | ||
|
||
Contact | ||
------- | ||
|
||
Mailing list: `cronie-devel AT lists.fedorahosted DOT org` | ||
|
||
Bug reports and pull requests can be filled at the Github site. |
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.4],[[email protected],[email protected]]) | ||
AC_INIT([cronie],[1.5.5],[[email protected],[email protected]]) | ||
AC_CONFIG_HEADER([config.h]) | ||
AC_PREREQ(2.60) | ||
|
||
|
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