]> granicus.if.org Git - cronie/commitdiff
System table wasn't sometimes checked for changes.
authormmaslano <mmaslano@redhat.com>
Fri, 24 Aug 2007 06:16:40 +0000 (08:16 +0200)
committerTomas Janousek <tomi@nomi.cz>
Mon, 27 Aug 2007 14:03:54 +0000 (16:03 +0200)
misc.c

diff --git a/misc.c b/misc.c
index aab32bb046465cac716cbddea62310bcbee977eb..862147c469606c8615d926ca01e7566e30a854a5 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -214,7 +214,7 @@ set_cron_cwd(void) {
 #ifdef CRON_GROUP
        grp = getgrnam(CRON_GROUP);
 #endif
-       /* first check for CRONDIR ("/var/cron" or some such)
+       /* first check for CRONDIR ("/var/spool" or some such)
         */
        if (stat(CRONDIR, &sb) < OK && errno == ENOENT) {
                perror(CRONDIR);
@@ -270,6 +270,37 @@ set_cron_cwd(void) {
                        exit(ERROR_EXIT);
                    }
        }
+       /* now check the RH_CROND_DIR */
+       if (stat(RH_CROND_DIR, &sb) < OK && errno == ENOENT) {
+        perror(RH_CROND_DIR);
+        if (OK == mkdir(RH_CROND_DIR, 0700)) {
+            fprintf(stderr, "%s: created\n", RH_CROND_DIR);
+            stat(RH_CROND_DIR, &sb);
+        } else {
+            fprintf(stderr, "%s: ", RH_CROND_DIR);
+            perror("mkdir");
+            exit(ERROR_EXIT);
+        }
+    }
+    if (!S_ISDIR(sb.st_mode)) {
+        fprintf(stderr, "'%s' is not a directory, bailing out.\n",
+            RH_CROND_DIR);
+        exit(ERROR_EXIT);
+    }
+    if (grp != NULL) {
+        if (sb.st_gid != grp->gr_gid)
+            if( chown(RH_CROND_DIR, -1, grp->gr_gid) == -1 )
+            {
+            fprintf(stderr,"chdir %s failed: %s\n", RH_CROND_DIR, strerror(errno));
+            exit(ERROR_EXIT);
+            }
+        if (sb.st_mode != 01730)
+            if( chmod(RH_CROND_DIR, 01730) == -1 )
+            {
+            fprintf(stderr,"chmod 01730 %s failed: %s\n", RH_CROND_DIR, strerror(errno));
+            exit(ERROR_EXIT);
+            }
+    }
 }
 
 /* acquire_daemonlock() - write our PID into /etc/cron.pid, unless