]> granicus.if.org Git - cronie/log
cronie
13 years agoFix memory leaks in load_user.
Tomas Mraz [Fri, 11 Mar 2011 17:08:45 +0000 (18:08 +0100)]
Fix memory leaks in load_user.

13 years agoThe last bit to set is always LAST_ - FIRST_.
Tomas Mraz [Fri, 11 Mar 2011 16:42:56 +0000 (17:42 +0100)]
The last bit to set is always LAST_ - FIRST_.

13 years agoCheck malloc return for NULL.
Tomas Mraz [Fri, 11 Mar 2011 16:02:25 +0000 (17:02 +0100)]
Check malloc return for NULL.

13 years agoDo not try to compile dead code.
Tomas Mraz [Fri, 11 Mar 2011 15:55:33 +0000 (16:55 +0100)]
Do not try to compile dead code.

13 years agoRename set_cron_cwd() to check_spool_dir() as we do not do any chdir
Tomas Mraz [Fri, 11 Mar 2011 13:06:26 +0000 (14:06 +0100)]
Rename set_cron_cwd() to check_spool_dir() as we do not do any chdir
anymore.

13 years agoAdd missing check for stat() return value.
Tomas Mraz [Fri, 11 Mar 2011 13:02:35 +0000 (14:02 +0100)]
Add missing check for stat() return value.

13 years agoSafeguard for system time changes. Otherwise anacron might wait with the job
Tomas Mraz [Wed, 9 Mar 2011 07:37:38 +0000 (08:37 +0100)]
Safeguard for system time changes. Otherwise anacron might wait with the job
running for a too long time.

13 years agoFix the non-default timezone support. Do not run jobs multiple times
Tomas Mraz [Tue, 8 Mar 2011 14:22:37 +0000 (15:22 +0100)]
Fix the non-default timezone support. Do not run jobs multiple times
on DST change.

13 years agoSet mailfrom to the user account, better PAM logging.
Tomas Mraz [Mon, 7 Mar 2011 14:01:26 +0000 (15:01 +0100)]
Set mailfrom to the user account, better PAM logging.

13 years agoSet only groups in the process handling PAM calls. Keep uids at 0
Tomas Mraz [Mon, 7 Mar 2011 13:27:46 +0000 (14:27 +0100)]
Set only groups in the process handling PAM calls. Keep uids at 0
so the process is not killable by the user.

13 years agoWhitespace cleanups.
Tomas Mraz [Wed, 2 Mar 2011 19:37:39 +0000 (20:37 +0100)]
Whitespace cleanups.

13 years agoFix SIGPIPE handling in do_command() and popen.
Tomas Mraz [Wed, 2 Mar 2011 19:34:08 +0000 (20:34 +0100)]
Fix SIGPIPE handling in do_command() and popen.
Ensure that PAM session is always closed.

13 years agoComment not freeing mailfrom - found during code review.
Marcela Mašláňová [Mon, 21 Feb 2011 12:33:08 +0000 (13:33 +0100)]
Comment not freeing mailfrom - found during code review.

13 years agoFree security contexts.
Marcela Mašláňová [Mon, 21 Feb 2011 12:29:17 +0000 (13:29 +0100)]
Free security contexts.

13 years agomkstemp needs only 6 X's
Marcela Mašláňová [Fri, 18 Feb 2011 14:20:47 +0000 (15:20 +0100)]
mkstemp needs only 6 X's

13 years agofdin could be tested before initialization.
Marcela Mašláňová [Mon, 21 Feb 2011 12:23:35 +0000 (13:23 +0100)]
fdin could be tested before initialization.

13 years agoPIE and RELRO flags to be set
Marcela Mašláňová [Thu, 17 Feb 2011 14:08:58 +0000 (15:08 +0100)]
PIE and RELRO flags to be set

We want all long running daemons to have PIE and RELRO flags set. This is a
missing security mechanism. Fixing this generally involves adding -fPIE -DPIE
to the CFLAGS, and -pie -Wl,-z,relro -Wl,-z,now  to the LDFLAGS.
Expected results:
PIE and partial RELRO at a minimum.

14 years agoAdd translation for remaining hardcoded contexts and av bits.
Tomas Mraz [Thu, 16 Dec 2010 16:20:12 +0000 (17:20 +0100)]
Add translation for remaining hardcoded contexts and av bits.

14 years agoRevert "Cache the security class and bit values and translate the remaining hardcoded...
Tomas Mraz [Thu, 16 Dec 2010 16:06:28 +0000 (17:06 +0100)]
Revert "Cache the security class and bit values and translate the remaining hardcoded values."
Caching cannot be done as the values can change on SELinux policy update.

This reverts commit b15f72976965d2ae1a1273558bf45be7de077b79.

14 years agoRevert "Missing exit if cron_init_security() fails."
Tomas Mraz [Thu, 16 Dec 2010 16:05:37 +0000 (17:05 +0100)]
Revert "Missing exit if cron_init_security() fails."
Caching cannot be done as the values can change on SELinux policy update.

This reverts commit ac70de36ec6c403c28291689701bd2567c565107.

14 years agoMissing exit if cron_init_security() fails.
Tomas Mraz [Thu, 16 Dec 2010 10:45:17 +0000 (11:45 +0100)]
Missing exit if cron_init_security() fails.

14 years agoCache the security class and bit values and translate the remaining hardcoded values.
Tomas Mraz [Wed, 15 Dec 2010 21:51:38 +0000 (22:51 +0100)]
Cache the security class and bit values and translate the remaining hardcoded values.

14 years agoClean up unnecessary assignment.
Tomas Mraz [Wed, 15 Dec 2010 15:16:04 +0000 (16:16 +0100)]
Clean up unnecessary assignment.

14 years agoThis patch causes cronie to ask kernel for constant definition
Dan Walsh [Wed, 15 Dec 2010 13:31:46 +0000 (14:31 +0100)]
This patch causes cronie to ask kernel for constant definition
rather then using hard coded

Also add info to syslog message to help diagnose problems.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years agoDo not lock jobs that fall out of allowed range - rhbz#661966
Tomas Mraz [Fri, 10 Dec 2010 17:12:36 +0000 (18:12 +0100)]
Do not lock jobs that fall out of allowed range - rhbz#661966

14 years agoMan - another typo
Marcela Mašláňová [Tue, 26 Oct 2010 09:54:18 +0000 (11:54 +0200)]
Man - another typo

14 years agoRe-add missing option into man and fix some typos.
Marcela Mašláňová [Tue, 26 Oct 2010 08:19:33 +0000 (10:19 +0200)]
Re-add missing option into man and fix some typos.

Thanks to Colin Dean.

14 years agoNew release 1.4.6 cronie1.4.6
Marcela Mašláňová [Fri, 22 Oct 2010 07:52:53 +0000 (09:52 +0200)]
New release 1.4.6

14 years agoRewrite of man pages & correction.
Martin Prpič [Thu, 21 Oct 2010 15:36:18 +0000 (17:36 +0200)]
Rewrite of man pages & correction.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years agoRemove useless man page.
Marcela Mašláňová [Thu, 21 Oct 2010 15:29:12 +0000 (17:29 +0200)]
Remove useless man page.

Thanks to Colin Dean.

14 years agoApply previous patch correctly.
Marcela Mašláňová [Thu, 21 Oct 2010 06:19:22 +0000 (08:19 +0200)]
Apply previous patch correctly.

14 years agoCheck clustering before un/watch function
Colin Dean [Wed, 20 Oct 2010 14:20:36 +0000 (16:20 +0200)]
Check clustering before un/watch function

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years agoMerge branch 'cluster'
Marcela Mašláňová [Wed, 13 Oct 2010 10:47:27 +0000 (12:47 +0200)]
Merge branch 'cluster'

14 years agoCheck clustering before un/watch function
Marcela Mašláňová [Fri, 8 Oct 2010 10:17:15 +0000 (12:17 +0200)]
Check clustering before un/watch function

14 years agoman page typo: change to correct option
Marcela Mašláňová [Thu, 7 Oct 2010 15:10:50 +0000 (17:10 +0200)]
man page typo: change to correct option

14 years agoRemove cluster support from inotify_database
Marcela Mašláňová [Wed, 6 Oct 2010 11:46:14 +0000 (13:46 +0200)]
Remove cluster support from inotify_database

check_inotify_database is called only when inotify is on, which
is not with cluster support.

14 years agoThe crontab command uses "-c" and "-n" instead of "-h".
Colin Dean [Wed, 6 Oct 2010 09:38:37 +0000 (11:38 +0200)]
The crontab command uses "-c" and "-n" instead of "-h".

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years agoCorrect ifdef HAVE_FCHOWN
Marcela Mašláňová [Mon, 4 Oct 2010 17:05:20 +0000 (19:05 +0200)]
Correct ifdef HAVE_FCHOWN

Based on https://fedorahosted.org/cronie/ticket/7
Thanks to crrodriguez

14 years agois_local set to zero
Marcela Mašláňová [Mon, 4 Oct 2010 16:41:38 +0000 (18:41 +0200)]
is_local set to zero

14 years agocronie on cluster
Colin Dean [Mon, 4 Oct 2010 14:29:12 +0000 (16:29 +0200)]
cronie on cluster

On issue we have is that although we've made our services very
resilient, by employing HA failover, load balancing and round robin DNS,
the one service that's difficult to do anything with is cron, because it
has traditionally been tied to a single machine.

For instance, we have a cluster of 4 Fedora servers which our end users
use as timeshare systems, using round robin DNS, and if one of the
servers is down it doesn't really matter too much. We don't even backup
the servers, relying on NFS home directories and rebuilding from scratch
using kickstart + cfengine if a server fails and can't be restarted.

However, the users have scattered crontab files around the 4 servers, so
that if the particular server a cron job is meant to run on dies, the
job doesn't run any more, and the crontab file may be permanently lost.

What we needed was a facility to allow crontabs in /var/spool/cron on
these 4 servers be NFS mounted from a single directory on our NetApp
filers (so giving us backups and snapshots), with any user able to run
"crontab -e" from any of the servers to manage a single shared crontab,
and for us in the IT Service to be able to set just one of the 4 servers
to run user crontab jobs at any time. However, we needed to keep
/etc/crontab and the files in /etc/cron.d/ specific to each individual
server still, and keep crond running on all 4 servers.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years agoTypo in log message
Marcela Mašláňová [Mon, 30 Aug 2010 08:12:09 +0000 (10:12 +0200)]
Typo in log message

Based on Tom London report https://bugzilla.redhat.com/show_bug.cgi?id=626947

14 years agoClose leaking file descriptor
Marcela Mašláňová [Mon, 23 Aug 2010 13:32:13 +0000 (15:32 +0200)]
Close leaking file descriptor

anacron was leaking fd, which caused denial of jobs by selinux.

14 years agoNew minor release 1.4.5. cronie1.4.5
Marcela Mašláňová [Mon, 2 Aug 2010 13:27:00 +0000 (15:27 +0200)]
New minor release 1.4.5.

14 years agoOK value printed twice
Marcela Mašláňová [Mon, 2 Aug 2010 12:59:38 +0000 (14:59 +0200)]
OK value printed twice

Fix based on 615107. There were too many OK's messages.

14 years agoHelp and usage fix
Marcela Mašláňová [Wed, 21 Jul 2010 11:52:51 +0000 (13:52 +0200)]
Help and usage fix

Option -h was added. Also details about options were added into usage.

14 years agoman crond -i
Marcela Mašláňová [Wed, 21 Jul 2010 10:31:16 +0000 (12:31 +0200)]
man crond -i

Document missing option.

14 years agoSyslog output will be used instead of mail
Marcela Mašláňová [Mon, 12 Jul 2010 13:58:04 +0000 (15:58 +0200)]
Syslog output will be used instead of mail

If sendmail isn't installed, syslog is used. This patch should
also solve problem with RPM requirements of sendmail
(and which mail should be installed by default).

Based on: https://bugzilla.redhat.com/show_bug.cgi?id=472710#c42

14 years agoRemove the whole unused part.
Marcela Mašláňová [Wed, 14 Apr 2010 14:08:13 +0000 (16:08 +0200)]
Remove the whole unused part.

14 years agoRemove 'dont log' part which probably never worked.
Marcela Mašláňová [Wed, 14 Apr 2010 13:44:48 +0000 (15:44 +0200)]
Remove 'dont log' part which probably never worked.

14 years agoBeautify error outputs.
Marcela Mašláňová [Wed, 14 Apr 2010 13:12:18 +0000 (15:12 +0200)]
Beautify error outputs.

14 years agoOption "-" don't log jobs as root
Michal Seben [Wed, 14 Apr 2010 12:01:42 +0000 (14:01 +0200)]
Option "-" don't log jobs as root

If the uid of the owner is 0 (root), he can put a "-" as first
character of a crontab entry. This will prevent cron from writing
a syslog message about this command getting executed.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years agoCorrectly reported PAM errors
Michal Seben [Wed, 14 Apr 2010 11:26:48 +0000 (13:26 +0200)]
Correctly reported PAM errors

cron_conv could be helpfull for debug purposes, when something bad happens
with pam e.g. : expired user password - without cron_conv cronie doesn't
report usefull info in syslog messages  (it just write no conversation
function error to messages file),if you want to do quick test of pam
conversation function, you  could set PASS_MAX_DAYS and PASS_WARN_AGE in
etc/login.defs , add new user and for this user create cron rule (crontab -e)

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years ago0anacron should check only readability.
Andrew Man-Hon Lau [Thu, 25 Mar 2010 06:50:19 +0000 (07:50 +0100)]
0anacron should check only readability.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
14 years agoRevert previous change. The code which control the input entry
Marcela Mašláňová [Tue, 23 Mar 2010 15:33:12 +0000 (16:33 +0100)]
Revert previous change. The code which control the input entry
should be sufficient. Only "/" are removed from scripts.

14 years agoIn system tables was hardcoded home directory to "/". This was changed
Marcela Mašláňová [Mon, 22 Mar 2010 09:58:01 +0000 (10:58 +0100)]
In system tables was hardcoded home directory to "/". This was changed
to switching to "/" only when home for user isn't defined.

Based on rhbz#575419

14 years agoDefinition of system crontables.
Marcela Mašláňová [Tue, 23 Feb 2010 08:34:58 +0000 (09:34 +0100)]
Definition of system crontables.

14 years agoNew release cronie1.4.4
Marcela Mašláňová [Thu, 18 Feb 2010 08:29:28 +0000 (09:29 +0100)]
New release

14 years agoCVE-2010-0424 -- crontab -e crontab file timestamp race condition
Marcela Mašláňová [Wed, 17 Feb 2010 10:51:45 +0000 (11:51 +0100)]
CVE-2010-0424 -- crontab -e crontab file timestamp race condition

When run as "crontab -e", crontab creates a temporary file in /tmp, copies the
contents of an existing crontab to this file, and then calls utime() on the
temporary file name to set its mtime and atime to 0, in order to check after
editing whether or not the file has been modified.
Since the file is created with the user's euid, and because utime is called on
the file as root, an attacker can replace the temporary file after it is
created with a symlink to any file or folder on disk, which will then have its
atime and mtime set to 0. This is certainly not a critical issue, but this
action can be used to deny service in many scenarios. For example, the cron
daemon checks the mtime of the crontab spool folder and its contents to
determine whether or not it needs to update its database of cronjobs, and if
these times are reset to 0, no new cronjobs will be added. Other daemons
relying on accurate timestamps may be similarly affected. Finally, build tools
such as make could be tricked into not re-compiling source, based on an old
timestamp.
Thanks to: Dan Rosenberg

14 years agoDynamic shared libraries -laudit
Marcela Mašláňová [Tue, 16 Feb 2010 07:28:01 +0000 (08:28 +0100)]
Dynamic shared libraries -laudit

There is need to add -laudit into gcc options because now it's not
found automatically. Based on:
http://fedoraproject.org/wiki/Features/ChangeInImplicitDSOLinking

14 years agoMake man page more readable based on #564206.
Marcela Mašláňová [Fri, 12 Feb 2010 09:43:19 +0000 (10:43 +0100)]
Make man page more readable based on #564206.

14 years agoCRON_VALIDATE_MAILRCPTS was removed, because it was not used anyway.
Marcela Mašláňová [Mon, 25 Jan 2010 08:20:06 +0000 (09:20 +0100)]
CRON_VALIDATE_MAILRCPTS was removed, because it was not used anyway.

15 years agoWith NFS homes can't be job executed, because root can't access
Marcela Mašláňová [Wed, 13 Jan 2010 12:54:43 +0000 (13:54 +0100)]
With NFS homes can't be job executed, because root can't access
this directory.

15 years agoDisable mailing output.
Will Woods [Tue, 5 Jan 2010 15:44:18 +0000 (16:44 +0100)]
Disable mailing output.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoOutput could be redirectered to syslog.
Will Woods [Tue, 5 Jan 2010 15:43:49 +0000 (16:43 +0100)]
Output could be redirectered to syslog.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoCron doesn't use environment values from /etc/security/pam_env.conf.
Marcela Mašláňová [Mon, 21 Dec 2009 12:58:08 +0000 (13:58 +0100)]
Cron doesn't use environment values from /etc/security/pam_env.conf.
This was fixed by moving pam_setcred into first part of authentication
of pam.

15 years agoInitscript: if unprivileged user stop deamon, it should return 4.
Marcela Mašláňová [Fri, 27 Nov 2009 09:10:38 +0000 (10:10 +0100)]
Initscript: if unprivileged user stop deamon, it should return 4.

15 years agoInitscript: if unprivileged user restart deamon, it should return 4.
Marcela Mašláňová [Fri, 27 Nov 2009 08:58:15 +0000 (09:58 +0100)]
Initscript: if unprivileged user restart deamon, it should return 4.

15 years agoThis function will be probably removed from libselinux, so it is added into source...
Guido Trentalancia [Thu, 5 Nov 2009 15:47:56 +0000 (16:47 +0100)]
This function will be probably removed from libselinux, so it is added into source code here.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoOne line was missing in pam authentication. rhbz#533189
Marcela Mašláňová [Thu, 5 Nov 2009 15:36:32 +0000 (16:36 +0100)]
One line was missing in pam authentication. rhbz#533189

15 years agoAutotools - Makefile includes dailyjobs, configure has new version. cronie1.4.3
Marcela Mašláňová [Tue, 3 Nov 2009 13:41:36 +0000 (14:41 +0100)]
Autotools - Makefile includes dailyjobs, configure has new version.

15 years agoNew release 1.4.3.
Marcela Mašláňová [Tue, 3 Nov 2009 10:24:43 +0000 (11:24 +0100)]
New release 1.4.3.

15 years agoFix "warning: unused variable" if LOG_FILE is not defined
SATOH Fumiyasu [Tue, 3 Nov 2009 09:56:24 +0000 (10:56 +0100)]
Fix "warning: unused variable" if LOG_FILE is not defined

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoPortability: Use swap_uids() instead of setreuid() directly
SATOH Fumiyasu [Tue, 3 Nov 2009 09:51:40 +0000 (10:51 +0100)]
Portability: Use swap_uids() instead of setreuid() directly

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoPortability: Solaris and AIX support saved UID/GID
SATOH Fumiyasu [Tue, 3 Nov 2009 09:44:55 +0000 (10:44 +0100)]
Portability: Solaris and AIX support saved UID/GID

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoPortability: Check if fchown() and fchgrp() exist by configure.
SATOH Fumiyasu [Tue, 3 Nov 2009 09:43:31 +0000 (10:43 +0100)]
Portability: Check if fchown() and fchgrp() exist by configure.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoSecurity: Ignore $TMPDIR if ruid!=euid and/or rgid!=egid A setuid/setgid process...
SATOH Fumiyasu [Tue, 3 Nov 2009 09:41:44 +0000 (10:41 +0100)]
Security: Ignore $TMPDIR if ruid!=euid and/or rgid!=egid A setuid/setgid process with GNU C library does NOT inherit $TMPDIR
from the parent process for security reason, but this behavior is
NOT standard feature.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoPortability: pam_misc.so is the Linux-PAM specific library
SATOH Fumiyasu [Tue, 3 Nov 2009 09:38:39 +0000 (10:38 +0100)]
Portability: pam_misc.so is the Linux-PAM specific library

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoPortability: Check if sys/fcntl.h exists or not
SATOH Fumiyasu [Tue, 3 Nov 2009 09:21:30 +0000 (10:21 +0100)]
Portability: Check if sys/fcntl.h exists or not

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoDailyjobs are here for users who don't like anacron.
Marcela Mašláňová [Tue, 3 Nov 2009 09:13:50 +0000 (10:13 +0100)]
Dailyjobs are here for users who don't like anacron.
0hourly executes cron.hourly scripts and other will be executed
by dailyjobs.

15 years agoWhen parent crond is stopped and child crond (executing program) is running,"service...
HONDA Hirofumi [Mon, 19 Oct 2009 10:25:15 +0000 (12:25 +0200)]
When parent crond is stopped and child crond (executing program) is running,"service crond status" reports "crond (pid  XXX) is running...".

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoNew release with few bugfixes. cronie1.4.2
Marcela Mašláňová [Mon, 12 Oct 2009 08:35:36 +0000 (10:35 +0200)]
New release with few bugfixes.

15 years agoSymlinks were not followed. This is a limitation of inotify API.
Marcela Mašláňová [Fri, 25 Sep 2009 06:32:34 +0000 (08:32 +0200)]
Symlinks were not followed. This is a limitation of inotify API.
rhbz#477100

15 years agoDo not segfault if mailto does not pass safe_p test.
Tomas Mraz [Fri, 18 Sep 2009 14:14:42 +0000 (16:14 +0200)]
Do not segfault if mailto does not pass safe_p test.

15 years agoUse password-auth common PAM configuration.
Tomas Mraz [Wed, 16 Sep 2009 09:52:00 +0000 (11:52 +0200)]
Use password-auth common PAM configuration.

15 years agoAdd daily, weekly as a possibility of anacrontab configuration.
Marcela Mašláňová [Mon, 17 Aug 2009 13:11:41 +0000 (15:11 +0200)]
Add daily, weekly as a possibility of anacrontab configuration.

15 years agoAdd anacrontab configuration file.
Marcela Mašláňová [Tue, 11 Aug 2009 11:06:16 +0000 (13:06 +0200)]
Add anacrontab configuration file.

15 years agoPolish manual pages.
Marcela Mašláňová [Tue, 11 Aug 2009 10:57:37 +0000 (12:57 +0200)]
Polish manual pages.

15 years agoRevert configuration file regularly-file back to anacrontab. cronie1.4.1
Marcela Mašláňová [Thu, 30 Jul 2009 08:54:24 +0000 (10:54 +0200)]
Revert configuration file regularly-file back to anacrontab.

15 years agoStart minor releases cronie-1.4.1.
Marcela Mašláňová [Wed, 29 Jul 2009 13:37:27 +0000 (15:37 +0200)]
Start minor releases cronie-1.4.1.

15 years agoRevert configure file for anacrontab.
Marcela Mašláňová [Wed, 29 Jul 2009 06:44:15 +0000 (08:44 +0200)]
Revert configure file for anacrontab.

15 years agoSegfault on ppc64 was caused by parsing random delay from anacrontab.
Rocco Iannacci [Wed, 29 Jul 2009 06:29:57 +0000 (08:29 +0200)]
Segfault on ppc64 was caused by parsing random delay from anacrontab.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoNew release cronie1.4. cronie1.4
Marcela Mašláňová [Tue, 21 Jul 2009 05:22:57 +0000 (07:22 +0200)]
New release cronie1.4.

15 years agoNew option: enable-anacron in configure which can set compilation
Marcela Mašláňová [Mon, 20 Jul 2009 13:04:37 +0000 (15:04 +0200)]
New option: enable-anacron in configure which can set compilation
with or without anacron part. Also there were changes in manual pages.
Updated ChangeLog.

15 years agoFix of autotools stuff for anacron.
Štěpán Kasal [Fri, 17 Jul 2009 10:13:28 +0000 (12:13 +0200)]
Fix of autotools stuff for anacron.

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
15 years agoMake anacron configurable. The option --enable-anacron in configure
Marcela Mašláňová [Thu, 16 Jul 2009 14:21:55 +0000 (16:21 +0200)]
Make anacron configurable. The option --enable-anacron in configure
can switch on/off compilation of this part of the package.

15 years agoPut anacron binary into proper location.
Marcela Mašláňová [Thu, 16 Jul 2009 11:52:27 +0000 (13:52 +0200)]
Put anacron binary into proper location.

15 years agoAdd configuration scripts into contrib.
Marcela Mašláňová [Thu, 16 Jul 2009 08:02:01 +0000 (10:02 +0200)]
Add configuration scripts into contrib.
Cleaning/adding man pages into Makefile/directories.

15 years agoCleaning useless files.
Marcela Mašláňová [Tue, 14 Jul 2009 07:44:29 +0000 (09:44 +0200)]
Cleaning useless files.

15 years agoAnacron makefile was rewritten according to the rest of autotools
Marcela Mašláňová [Tue, 14 Jul 2009 07:32:51 +0000 (09:32 +0200)]
Anacron makefile was rewritten according to the rest of autotools
makefiles in this project.

15 years agoNew options:
Marcela Mašláňová [Mon, 13 Jul 2009 15:41:17 +0000 (17:41 +0200)]
New options:
random delay could be set from anacrontab instead of sysconfig file,
range of hours when should be jobs started.