-
Notifications
You must be signed in to change notification settings - Fork 81
/
ChangeLog
2930 lines (1753 loc) · 99.7 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-04-08 Tomas Mraz <tmraz@fedoraproject.org>
* man/crontab.5: Fix escapes in formatting
2024-01-22 Sebastian Pipping <sebastian@pipping.org>
* Make GitHub Actions reject spelling errors using codespell
2024-01-22 Sebastian Pipping <sebastian@pipping.org>
* Fix multiple typos
2024-01-22 Sebastian Pipping <sebastian@pipping.org>
* Make GitHub Dependabot keep our GitHub Actions up to date
2024-01-22 Sebastian Pipping <sebastian@pipping.org>
* Make GitHub Actions ensure that cronie keeps compiling without errors
2024-01-22 Hanno Böck <990588+hannob@users.noreply.github.com>
* crontab.5: Correctly describe mail from behavior
2024-01-19 Tomas Mraz <tmraz@fedoraproject.org>
* Inherit MAILFROM from the crond process environment
This allows setting it in /etc/sysconfig/crond or in the systemd unit.
2024-01-19 Tomas Mraz <tmraz@fedoraproject.org>
* Revert "Use empty envelope address with default mailfrom"
This reverts commit c640f4f39e5c20995e960e4b954cd0574a96c028.
This causes more harm than expected and is also strictly speaking
not RFC compliant.
2024-01-18 Johannes Segitz <jsegitz@suse.de>
* ensure crontab backup file has strict permissions
2024-01-12 Tomas Mraz <tmraz@fedoraproject.org>
* Release version 1.7.1
2023-10-25 Ondřej Pohořelský <opohorel@redhat.com>
* -n option: wait on finishing grandchild process
With `WNOHANG` we skip sending the email when waitpid() returns 0,
which happens if the process is still running. Instead, using `0`
parameter will wait for the process to actually stop running.
2023-11-16 Tomas Mraz <tmraz@fedoraproject.org>
* Use empty envelope address with default mailfrom
This should still reasonably fix the issue resolved in
https://github.com/cronie-crond/cronie/pull/118
But it would provide normal envelope address if
MAILFROM is explicitly set.
2023-11-16 Tomas Mraz <tmraz@fedoraproject.org>
* Revert "set the return-path hard to "<>""
This is problematic in some use-cases. It needs to be optional.
2023-11-16 Tomas Mraz <tmraz@fedoraproject.org>
* Revert "do not put <> in quotation marks"
2023-10-19 Tomas Mraz <tmraz@fedoraproject.org>
* cron_sleep(): Cast target to time_t before converting to seconds
2023-10-16 Christian Hesse <mail@eworm.de>
* re-introduce the test for existence of file
If the file does not exist it exits early with error... Let's source
only if files actually does exist. We still have a sane default.
2023-10-13 Christian Hesse <mail@eworm.de>
* make the environment file optional
Starting the daemon works without additional environment variables, so
make the file optional.
2023-10-13 Tomas Mraz <tmraz@fedoraproject.org>
* Release version 1.7.0
2023-10-13 Tomas Mraz <tmraz@fedoraproject.org>
* anacron: Use xclose() instead of fclose()
When replacing standard descriptors we use
xclose() elsewhere and it is less error-prone.
2023-09-28 Alexander Schwinn <alexxcons@xfce.org>
* Show error when step size is out of bound
2023-09-28 Alexander Schwinn <alexxcons@xfce.org>
* Rename variables in 'get_range' to make code more readable
2023-09-17 Jonathan Kamens <jik@kamens.us>
* Explain how to do skip values for non-multiples of the time unit
2023-09-07 bwelterl <bwelterl@redhat.com>
* Optimization to close fds from /proc/self/fd in case of high
nofile limit after fork
2023-07-25 Tomas Mraz <tmraz@fedoraproject.org>
* cronnext: Round up the start time to whole minute
2023-04-28 lilinjie <lilinjie@uniontech.com>
* fix typo
2023-04-27 Johnny <39348311+JohnnyJayJay@users.noreply.github.com>
* anacron: Add support for NO_MAIL_OUTPUT environment variable
2023-03-29 YoruStar <524413304@qq.com>
* Support reloading with SIGURG in addition to SIGHUP
2023-03-13 Tomas Mraz <tmraz@fedoraproject.org>
* crontab.5: Clarify the evaluation of the step values
2023-02-14 Li kunyu <kunyu@nfschina.com>
* cronie_common.c: Check memory allocation result in expand_envvar() function.
2023-01-12 lilinjie <102012657+uniontech-lilinjie@users.noreply.github.com>
* ChangeLog: fix typos
2023-01-11 lilinjie <102012657+uniontech-lilinjie@users.noreply.github.com>
* CHANGELOG: fix typo
2022-06-17 fgozzini <49639209+fgozzini@users.noreply.github.com>
* Added double quotes
2022-06-15 fgozzini <49639209+fgozzini@users.noreply.github.com>
* Source directly from `/etc/default/anacron`
2022-06-14 fgozzini <49639209+fgozzini@users.noreply.github.com>
* Allow user to run anacron jobs on battery
The user can allow running anacron jobs on battery by adding
the string `ANACRON_RUN_ON_BATTERY_POWER=yes` to the
file `/etc/default/anacron`.
2022-08-16 Antti Antinoja <antti@fennosys.fi>
* Use _PATH_STDPATH instead of _PATH_DEFPATH
2022-08-24 Christopher Odenbach <odenbach@uni-paderborn.de>
* do not put <> in quotation marks
2022-08-23 Christopher Odenbach <odenbach@uni-paderborn.de>
* set the return-path hard to "<>"
2022-09-26 Ondřej Pohořelský <opohorel@redhat.com>
* Add -n option for crontab entries
The -n option causes no mail to be sent
when the command finishes successfully.
2022-12-16 iTrooz <itrooz@protonmail.com>
* Make a backup of the crontab file on edition and deletion
2022-12-23 iTrooz <itrooz@protonmail.com>
* use packit srpm_build_deps key
2022-12-16 Masanari Iida <standby24x7@gmail.com>
* man: Fix some spelling typos in anacron.8 and cronnext.1
2022-12-12 lilinjie <lilinjie@uniontech.com>
* fix spelling error
2022-08-31 Daniel M. Capella <polyzen@users.noreply.github.com>
* Remove excess comma
2022-04-25 Tomas Mraz <tmraz@fedoraproject.org>
* Release version 1.6.1
2022-03-23 w30023233 <wangyuhang27@huawei.com>
* Fix regression in handling 1-5 crontab entries
2022-03-22 Tomas Mraz <tmraz@fedoraproject.org>
* Release version 1.6.0
2022-03-22 w30023233 <wangyuhang27@huawei.com>
* Add switch -f for foreground mode
2022-03-22 Tomas Mraz <tmraz@fedoraproject.org>
* Fix regression in handling */x crontab entries
2022-01-05 Tomas Mraz <tmraz@fedoraproject.org>
* get_number: Add missing NUL termination for the scanned string
2021-11-08 Ondřej Pohořelský <35430604+opohorel@users.noreply.github.com>
* Add random within range '~' operator
2021-11-03 Nicolas Limare <nicolas@limare.net>
* Fix RandomScale calculation
2021-10-27 sgerwk <sgerwk@aol.com>
* include the case where runstate is undefined
2021-10-26 sgerwk <sgerwk@aol.com>
* use the configure runstatedir directory for pid file
2021-09-02 Nils Philippsen <nils@tiptoe.de>
* crond: Fix description of '-P' option
2021-07-13 Danilo Spinella <danilo.spinella@suse.com>
* Increase the maximum number of crontab entries
2021-04-29 Jan Staněk <jstanek@redhat.com>
* Address issues found by coverity scan
2021-03-29 Christian Hesse <mail@eworm.de>
* crontab: use bold colors
2021-03-29 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.7
2021-03-29 Tomas Mraz <tmraz@fedoraproject.org>
* crond: Skip blanks between user name and command
2021-03-29 Tomas Mraz <tmraz@fedoraproject.org>
* 0anacron: Check only Mains type power_supply for status
2021-03-22 Tomas Mraz <tmraz@fedoraproject.org>
* 0anacron: Ignore Battery type power supply devices
2021-03-19 Tomas Mraz <tmraz@fedoraproject.org>
* crontab: switch off colors if NO_COLOR is set
2021-03-17 Lars Wendler <polynomial-c@gentoo.org>
* configure.ac: Don't use AM_CONDITIONAL inside an if statement
or else configure might break:
2021-03-17 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.6
2021-03-17 Tomas Mraz <tmraz@fedoraproject.org>
* Partially revert the behavior of crontab command without arguments
If the stdin is not a TTY we behave as required in the POSIX spec.
This still prevents mistakes from simply running crontab without
arguments in a terminal.
2021-03-17 Tomas Mraz <tmraz@fedoraproject.org>
* Any online power supply indicates that the system is on mains
2021-01-22 Tomas Mraz <tmraz@fedoraproject.org>
* Fix some compilation warnings
2021-01-22 Tomas Mraz <tmraz@fedoraproject.org>
* Always load database on startup even if all files have st_mtime == 0
2020-11-28 Mark Hills <mark@xwax.org>
* Fix compiler warnings on 32-bit systems
2020-12-28 Sami Kerola <kerolasa@iki.fi>
* build-sys: update to autoconf 2.70
2020-12-24 Hyunsoo Choe <hytgbn@gmail.com>
* Fix race condition between file update and load_database
Issue: https://github.com/cronie-crond/cronie/issues/73
2020-11-02 Tomas Mraz <tmraz@fedoraproject.org>
* configure.ac: Drop the bug report e-mail from AC_INIT()
Fixes #70
2020-10-25 Wayne Van Son <waynevanson@gmail.com>
* docs(readme): adds Void Linux to packaged distributions
2020-08-20 Björn Persson <Bjorn@Rombobjörn.se>
* Add missing Content-Transfer-Encoding.
2020-08-03 Kevin Adler <kadler@us.ibm.com>
* Fix anacron build when obstack not available
2020-07-23 Fernando Cappi <3818944+fcappi@users.noreply.github.com>
* Expand MAILTO and MAILFROM environment variables
2020-07-13 J. Paul Reed <preed@release-approaches.com>
* Fix crontab.5 man page, wrt verbiage regarding named lists/ranges for crontab entries.
See https://github.com/cronie-crond/cronie/issues/62 for more info.
2020-06-11 Fernando Cappi <3818944+fcappi@users.noreply.github.com>
* Add new option to test a crontab file syntax without installing it
Co-authored-by: Fernando Cappi <fcappi@motorola.com>
2020-06-10 Tomas Mraz <tmraz@fedoraproject.org>
* Update packit configuration for latest Fedora versions
2020-06-10 Tomas Mraz <tmraz@fedoraproject.org>
* Fix the .spec for packit
2020-04-21 Tomas Mraz <tmraz@fedoraproject.org>
* Sync cronie.spec with Fedora
2019-11-11 Dominika Hodovska <dhodovsk@redhat.com>
* Enable copr builds and add packit config
2020-04-21 Tomas Mraz <tmraz@fedoraproject.org>
* Handle out-of-memory condition from mkprints() call
2020-04-20 John Horne <john.horne@plymouth.ac.uk>
* Ensure the command name is not null before logging it.
2020-04-20 John Horne <john.horne@plymouth.ac.uk>
* Moved CMDEND code to outside for for loop.
2020-04-20 John Horne <john.horne@plymouth.ac.uk>
* Add CMDEND log entry to log when cron jobs end.
2020-03-02 Ian2020 <Ian2020@users.noreply.github.com>
* Allow backslashes when not part of a line continuation
2019-12-16 Tomas Mraz <tmraz@fedoraproject.org>
* Fix incorrect flag set for @weekly jobs.
Fixes #52
2019-11-24 Josef Schlehofer <pepe.schlehofer@gmail.com>
* Fix incorrect include of fcntl.h
2019-11-06 Tomas Mraz <tmraz@fedoraproject.org>
* crontab: Fix coloring when crontab ends with comment
Also emphasize a missing EOL at EOF by red warning text
Fixes #45
2019-10-31 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.5
2019-10-31 Tomas Mraz <tmraz@fedoraproject.org>
* Avoid warning for strncat.
2019-10-29 Christian Kastner <ckk@kvr.at>
* crontab.1: Various fixes and improvements
2019-10-30 Christian Kastner <ckk@kvr.at>
* crontab: fsync to check for full disk
2019-10-30 Christian Kastner <ckk@kvr.at>
* crontab: Add Y/N to retry prompt
2019-10-30 Christian Kastner <ckk@kvr.at>
* entries: Explicitly validate upper ranges and steps
2019-10-29 Christian Kastner <ckk@kvr.at>
* crond: report missing newline before EOF
2019-09-09 Christian Hesse <mail@eworm.de>
* do not log carriage return
2019-08-22 sgerwk <sgerwk@aol.com>
* skip directories when given as crontabs
2019-07-22 Stephane Blondon <stephane.blondon@gmail.com>
* crontab -l colors comment lines in a different color
2019-07-09 sgerwk <sgerwk@aol.com>
* fix compile instruction: configure is generated by autogen.sh
2019-07-08 Tomas Mraz <tmraz@fedoraproject.org>
* getdtablesize() can return very high values in containers
2019-05-11 John Horne <jayaich@users.noreply.github.com>
* Power supply name not detected correctly.
2019-05-07 Tomas Mraz <tmraz@fedoraproject.org>
* Revert "Avoid creating pid files when crond doesn't fork"
2019-04-15 Tomas Mraz <tmraz@fedoraproject.org>
* anacron: fix types in comparisons
2019-03-31 Sami Kerola <kerolasa@iki.fi>
* mics: stop using plain integer as NULL pointer
2019-03-31 Sami Kerola <kerolasa@iki.fi>
* cron: fix type in comparison
2019-03-31 Sami Kerola <kerolasa@iki.fi>
* cron: fix variable shadowing
2019-03-31 Sami Kerola <kerolasa@iki.fi>
* cron: mark signal number arguments in signal handlers unused
2019-04-08 Tomáš Mráz <t8m@users.noreply.github.com>
* Update readme.md with recent releases
2019-04-08 Tomas Mraz <tmraz@fedoraproject.org>
* Move allowed() and related function to security.c
2019-03-31 Sami Kerola <kerolasa@iki.fi>
* build-sys: enable anacron by default
2019-03-31 Sami Kerola <kerolasa@iki.fi>
* build-sys: use none-recursive build
2019-04-02 sgerwk <sgerwk@aol.com>
* cronnext: optionally select jobs by substring
2019-03-18 Tomas Mraz <tmraz@fedoraproject.org>
* crond: Do not abort loading crontab prematurely in case of error
2019-03-18 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.4
2019-03-18 Tomas Mraz <tmraz@fedoraproject.org>
* crond: Fix regression from last release
Only first job from a crontab was being run.
2019-03-15 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.3
2019-03-15 Tomas Mraz <tmraz@fedoraproject.org>
* Fix warnings in anacron and crond code.
2019-03-15 Tomas Mraz <tmraz@fedoraproject.org>
* Fix CVE-2019-9704 and CVE-2019-9705
2019-03-15 Tomas Mraz <tmraz@fedoraproject.org>
* Remove leftover debugging message.
2019-03-11 Marcel Plch <mplch@redhat.com>
* Make crond run after autofs mounts
2019-02-15 Tomas Mraz <tmraz@fedoraproject.org>
* crontab: Make crontab without arguments fail.
2018-12-07 Marcel Plch <mplch@redhat.com>
* Use system-auth instead of password-auth for PAM authentication (#25)
2018-11-23 Marcel Plch <mplch@redhat.com>
* Restart crond if it fails
2018-11-19 Tomas Mraz <tmraz@fedoraproject.org>
* load_env: parse the environment variables in-place
2018-11-19 Tomáš Mráz <t8m@users.noreply.github.com>
* Update readme.md with the latest release and better link to Fedora
2018-11-18 Oliver Kurz <okurz@suse.de>
* readme.md: Replace dead link to openSUSE ML with package link
2018-10-18 Tomas Mraz <tmraz@fedoraproject.org>
* Use the role from the crond context for system job contexts.
2018-08-28 Marcel Plch <mplch@redhat.com>
* Fix unsafe code
2018-08-28 Marcel Plch <mplch@redhat.com>
* Fix possible memory leaks
2018-05-03 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.2
2018-05-03 Tomas Mraz <tmraz@fedoraproject.org>
* Silence may be used uninitialized warning.
2018-05-03 Tomas Mraz <tmraz@fedoraproject.org>
* crontab: do not try to replace the crontab with a directory
2018-01-24 Tomas Mraz <tmraz@fedoraproject.org>
* Support the MAILFROM also in anacron.
2017-11-28 Tomas Mraz <tmraz@fedoraproject.org>
* Document that in range the first number must be less than second.
2017-10-28 sgerwk <sgerwk@aol.com>
* round time on the minute
2017-10-28 sgerwk <sgerwk@aol.com>
* print all jobs executed in interval
2017-10-28 sgerwk <sgerwk@aol.com>
* new options -l and -q
2017-10-28 sgerwk <sgerwk@aol.com>
* output in yaml format
2017-10-28 sgerwk <sgerwk@aol.com>
* print the job(s) that is going to be executed next
2017-10-28 sgerwk <sgerwk@aol.com>
* allow checking a time interval
2017-10-28 sgerwk <sgerwk@aol.com>
* print format for flags
2017-11-02 Marco Migliori <sgerwk@aol.com>
* cronnext can read additional crontabs from files
2017-09-14 Tomas Mraz <tmraz@fedoraproject.org>
* Use proper variable types.
2017-09-14 Tomas Mraz <tmraz@fedoraproject.org>
* Add myself as author.
2017-09-14 Tomas Mraz <tmraz@fedoraproject.org>
* Log startup even when started in non-forking mode.
2017-07-14 Mark Montague <mark@catseye.org>
* Fix SELinux denial when running under Docker
2017-07-01 Sami Kerola <kerolasa@iki.fi>
* build-sys: use silent build rule
2017-06-11 Sami Kerola <kerolasa@iki.fi>
* cronnext: improve manual page
2017-06-11 Sami Kerola <kerolasa@iki.fi>
* all: add version printing option -V
2017-06-11 Sami Kerola <kerolasa@iki.fi>
* cronnext: use same style in usage() with other commands
2017-06-10 Sami Kerola <kerolasa@iki.fi>
* various files: fix indentation
2017-06-10 Sami Kerola <kerolasa@iki.fi>
* crond: never define unused cron_start_pam()
2017-05-01 SjonHortensius <SjonHortensius@users.noreply.github.com>
* Add Arch Linux to list of distributions
2017-04-28 Tomas Mraz <tmraz@fedoraproject.org>
* Fix misleading indentation.
2017-04-28 Tomas Mraz <tmraz@fedoraproject.org>
* Make cronnext build and work with additional features enabled.
2017-04-18 Tomas Mraz <tmraz@fedoraproject.org>
* Add MIME-Version header also to mails generated by anacron.
2017-04-18 Tomas Mraz <tmraz@fedoraproject.org>
* Add MIME-Version header to generated mails.
2017-03-29 Tomas Mraz <tmraz@fedoraproject.org>
* The output might not be mailed, make the message more precise.
2017-03-29 Tomas Mraz <tmraz@fedoraproject.org>
* Allow empty environment values in crontab.
2017-03-29 Tomáš Mráz <t8m@users.noreply.github.com>
* Point releases to the GitHub cronie releases page
2017-03-29 Kristýna Streitová <kstreitova@suse.com>
* crontab.5: Add a mention about disabling logging
2017-03-29 Kristýna Streitová <kstreitova@suse.com>
* Avoid creating pid files when crond doesn't fork
2017-01-20 Tomas Mraz <tmraz@fedoraproject.org>
* readme.md: remove CRs
2017-01-20 Tomas Mraz <tmraz@fedoraproject.org>
* Add readme.md for github
2016-09-08 Tomas Mraz <tmraz@fedoraproject.org>
* Make it clear that one of the reasons for getpwnam() failure is unknown user.
2016-09-05 Tomas Mraz <tmraz@fedoraproject.org>
* On some machines the power supply is named ADP0.
2016-08-23 Tomas Mraz <tmraz@fedoraproject.org>
* Query power supply status directly from kernel.
2016-06-27 Tomas Mraz <tmraz@fedoraproject.org>
* cronnext: Fix warnings
2016-06-27 Tomas Mraz <tmraz@fedoraproject.org>
* cronnext: Print usage and error on stderr.
2016-06-27 Marco Migliori <sgerwk@aol.com>
* Added useful utility cronnext to find out time of the next job run.
2016-06-23 Tomas Mraz <tmraz@fedoraproject.org>
* anacron: Check return value of fchdir.
2016-06-23 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.1
2016-06-23 Tomas Mraz <tmraz@fedoraproject.org>
* Remove unneeded obsolete SELinux include.
2016-06-23 Tomas Mraz <tmraz@fedoraproject.org>
* Remove unneeded obsolete SELinux includes.
2016-06-23 Tomas Mraz <tmraz@fedoraproject.org>
* Rename timeval time to tv so time function can be used.
2016-06-23 Tomas Mraz <tmraz@fedoraproject.org>
* Fix longstanding race condition on crontab modification.
If crontab is modified twice at the same second the crond reads it
which means the timestamp will not change, the latest content will
never be read.
2016-06-10 Tomas Mraz <tmraz@fedoraproject.org>
* Fix misleading comment in pam configuration file.
2016-05-13 Tomas Mraz <tmraz@fedoraproject.org>
* anacron: use mkstemp() instead of tempnam()
Although the use of tempnam() seemed to be safeguarded
better to not use it at all.
2016-05-13 Tomas Mraz <tmraz@fedoraproject.org>
* anacron: Drop potentially unsafe umask setting.
2016-05-13 Tomas Mraz <tmraz@fedoraproject.org>
* anacron: Do not try to mail to empty address.
2016-04-25 Tomas Mraz <tmraz@fedoraproject.org>
* Clarify the crontab(1) documentation.
2016-04-23 Gary Tierney <gary.tierney@gmx.com>
* Remove hardcoded "system_u" SELinux user
This gets rid of the hardcoded reference to the ref-policy system_u user
and instead relies on the user that cronie is currently running as.
2016-04-25 Tomas Mraz <tmraz@fedoraproject.org>
* Clarify return value.
2016-03-15 Tomas Mraz <tmraz@fedoraproject.org>
* Correct instructions for disabling Anacron.
2015-11-07 Ville Skyttä <ville.skytta@iki.fi>
* Man page syntax fixes
2015-11-05 Robert Byrnes <Robert.Byrnes@deshaw.com>
* Inherit PATH from the crond environment if -P option is used.
2015-07-13 Tomas Mraz <tmraz@fedoraproject.org>
* In crontab command use a temporary filename that is ignored by crond.
2015-05-28 Tomas Mraz <tmraz@fedoraproject.org>
* Add *.patch and *.orig to .gitignore
2015-05-28 Tomas Mraz <tmraz@fedoraproject.org>
* Add compile to .gitignore.
2015-05-28 Tomas Mraz <tmraz@fedoraproject.org>
* Release new version 1.5.0
properly create dist tarball even with anacron and PAM disabled
2015-05-28 Tomas Mraz <tmraz@fedoraproject.org>
* Pass the job environment also when executing the sendmail.
2015-01-31 Felix Janda <felix.janda@posteo.de>
* database.c: Use POSIX NAME_MAX instead of BSD MAXNAMLEN
2015-04-21 Tomas Mraz <tmraz@fedoraproject.org>
* Prevent adding duplicate orphans on reload.
2015-02-05 Tomas Mraz <tmraz@fedoraproject.org>
* Do not overwrite the last zero-byte.
2015-02-03 Tomas Mraz <tmraz@fedoraproject.org>
* Log the crond shutdown.
2015-01-28 Tomas Mraz <tmraz@fedoraproject.org>
* No need to call strcmp on already matched variables.
2015-01-28 Tomas Mraz <tmraz@fedoraproject.org>
* Use unbiased random number for RANDOM_DELAY.
2015-01-28 Tomas Mraz <tmraz@fedoraproject.org>
* Call PAM only when it makes sense.
2015-01-28 Tomas Mraz <tmraz@fedoraproject.org>
* Fix broken test for match_rx() failure.
2014-11-04 Tomas Mraz <tmraz@fedoraproject.org>
* Properly check the existence of the user at the time the job is run.
2014-09-17 Marcela Mašláňová <mmaslano@redhat.com>
* contrib/cronie.systemd: Services must be running before starting
crond, otherwise many jobs is not running properly for no obvious
reason. nss-user-lookup.target should help when people are authenticated
through nss/sssd. Based on: https://bugzilla.redhat.com/show_bug.cgi?id=1067236
2014-07-30 Marcela Mašláňová <mmaslano@redhat.com>
* src/cron.c: More logging when getpwnam fails. Based on: rhbz#1123984 Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2014-07-25 Marcela Mašláňová <mmaslano@redhat.com>
* configure.ac, src/env.c: BSD doesn't define environ in unistd.h.
Also cronie didn't have option for enabling BSD specifics. Based on: naota@gentoo.org Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2014-07-25 Marcela Mašláňová <mmaslano@redhat.com>
* anacron/readtab.c: Add missing brackets into anacron readtab. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2014-07-25 Marcela Mašláňová <mmaslano@redhat.com>
* src/misc.c: Include missing header for signal handlers. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2014-07-04 Marcela Mašláňová <mmaslano@redhat.com>
* contrib/cronie.systemd: Missing reload definition in unit file was
added. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2014-04-30 Marcela Mašláňová <mmaslano@redhat.com>
* : commit b2c8cbcef8c97b5a175d6e71995249b288707b0f Author: Tomas
Mraz <tmraz@fedoraproject.org> Date: Tue Apr 29 14:08:25 2014
+0200
2014-03-31 Martin Poole <mpoole@redhat.com>
* src/misc.c: crond installs a signal handler for SIGINT & SIGTERM
which removes the pid file and exits. This handler is not reset for
individual forked sub-processes which results in the condition that
if the child receives SIGINT or SIGTERM the pid file is erroneously
removed. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2014-02-14 Marcela Mašláňová <mmaslano@redhat.com>
* anacron/readtab.c: Anacron does not correctly check configuration
parameters for validity and can segfault on certain data types. The return code
from the match_rx calls in readtab.c are not being checked
correctly. Bugfix let to segfaults in downstreams on non intel
architectures. All options in anacrontab should be now working
correctly. Based on patch from: Martin Poole
2014-01-20 Marcela Mašláňová <mmaslano@redhat.com>
* contrib/cronie.systemd: Remove syslog.target according to Fedora
and systemd guidelines. https://fedorahosted.org/fpc/ticket/177#comment:2 Thanks to: Ville Skyttä
2014-01-17 Ville Skyttä <ville.skytta@iki.fi>
* man/anacron.8: [PATCH] Fix anacron.8 UTF-8 encoding. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2013-12-18 Ville Skyta <ville.skytta@iki.fi>
* anacron/lock.c, anacron/readtab.c, man/crontab.5, src/cron.c,
src/database.c: Spelling fixes. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2013-12-18 Ville Skytta <ville.skytta@iki.fi>
* anacron/readtab.c, src/do_command.c: strncmp() size fixes. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2013-12-18 Martin Poole <mpoole@redhat.com>
* anacron/readtab.c: Anacron does not correctly check configuration
parameters for validity and can segfault on certain data types. The
return code from the match_rx calls in readtab.c are not being
checked correctly. Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
2013-09-26 Marcela Mašláňová <mmaslano@redhat.com>
* man/cron.8: crond -n must change pam setting.
2013-09-12 Marcela Mašláňová <mmaslano@redhat.com>
* cronie.init: Non-root user can't read configuration. Init file
will fail with proper error message. rhbz#1006869
2013-08-29 Marcela Mašláňová <mmaslano@redhat.com>
* : commit 2ec335f9549e8134102ac37665171a40a5407512 Author: Saul
Wold <sgw@linux.intel.com> Date: Mon Aug 26 11:18:27 2013 +0200
2013-08-16 Tomas Mraz <tmraz@fedoraproject.org>
* src/security.c: Pull PAM environment variables also from session
modules. - also fix memory leak of environment returned by pam_getenvlist()
2013-08-13 Marcela Mašláňová <mmaslano@redhat.com>
* contrib/cronie.systemd: KillMode in systemd unit file will enable
to finish jobs executed by cron. Even if cron dies, jobs should
continue. Based on: https://bugzilla.redhat.com/show_bug.cgi?id=919290
2013-08-09 Tomas Mraz <tmraz@fedoraproject.org>
* src/misc.c: Fcntl locking has different semantics than flock.
Prefer flock.
2013-07-18 Marcela Mašláňová <mmaslano@redhat.com>
* ChangeLog, configure.ac: Release 1.4.11
2013-06-11 Tomas Mraz <tmraz@fedoraproject.org>
* src/user.c: Log failures in load_user().
2013-06-11 Tomas Mraz <tmraz@fedoraproject.org>
* man/crontab.5, src/cron.c, src/entry.c, src/env.c, src/globals.h,
src/structs.h: Add support for RANDOM_DELAY of jobs.
2013-06-11 Tomas Mraz <tmraz@fedoraproject.org>
* src/user.c: Fixed bug introduced by previous commit and simplified
error handling.
2013-06-07 Tomas Mraz <tmraz@fedoraproject.org>
* src/env.c, src/funcs.h, src/user.c: Copy some variables from the
crond process environment. Also cleanup error handling in load_env().
2013-06-06 Tomas Mraz <tmraz@fedoraproject.org>
* src/cron.c: setenv takes 3 arguments
2013-06-06 Tomas Mraz <tmraz@fedoraproject.org>
* src/cron.c: Do not use putenv with string literal.
2013-04-25 Tomas Mraz <tmraz@fedoraproject.org>
* src/do_command.c: Make From field in mails from crond RFC
compliant.
2012-12-30 Sami Kerola <kerolasa@iki.fi>
* src/crontab.c: cron: clarify usage() print out The -n option needs argument, which was missing from the usage(). Signed-off-by: Sami Kerola <kerolasa@iki.fi>
2012-12-29 Sami Kerola <kerolasa@iki.fi>