From: lhh@sourceware.org <lhh@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster/rgmanager/src/daemons resrules.c
Date: 31 May 2007 18:37:50 -0000 [thread overview]
Message-ID: <20070531183750.3350.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Branch: RHEL5
Changes by: lhh at sourceware.org 2007-05-31 18:37:50
Modified files:
rgmanager/src/daemons: resrules.c
Log message:
Resolves: #234249
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/rgmanager/src/daemons/resrules.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.16.2.3&r2=1.16.2.4
--- cluster/rgmanager/src/daemons/resrules.c 2007/05/10 16:23:43 1.16.2.3
+++ cluster/rgmanager/src/daemons/resrules.c 2007/05/31 18:37:50 1.16.2.4
@@ -1010,8 +1010,9 @@
{
DIR *dir;
struct dirent *de;
- char *fn;//, *dot;
+ char *fn, *dot;
char path[2048];
+ struct stat st_buf;
dir = opendir(rpath);
if (!dir)
@@ -1024,14 +1025,40 @@
if (!fn)
continue;
+ /* Ignore files with common backup extension */
if ((fn != NULL) && (strlen(fn) > 0) &&
(fn[strlen(fn)-1] == '~'))
continue;
+ /* Ignore hidden files */
+ if (*fn == '.')
+ continue;
+
+ dot = strrchr(fn, '.');
+ if (dot) {
+ /* Ignore RPM installed save files, patches,
+ diffs, etc. */
+ if (!strncasecmp(dot, ".rpm", 4)) {
+ fprintf(stderr, "Warning: "
+ "Ignoring %s/%s: Bad extension %s\n",
+ rpath, de->d_name, dot);
+ continue;
+ }
+ }
+
snprintf(path, sizeof(path), "%s/%s",
rpath, de->d_name);
- load_resource_rulefile(path, rules);
+ if (stat(path, &st_buf) < 0)
+ continue;
+
+ if (S_ISDIR(st_buf.st_mode))
+ continue;
+
+ if (st_buf.st_mode & (S_IXUSR|S_IXOTH|S_IXGRP)) {
+ printf("Loading resource rule from %s\n", path);
+ load_resource_rulefile(path, rules);
+ }
}
xmlCleanupParser();
next reply other threads:[~2007-05-31 18:37 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-31 18:37 lhh [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-01-30 20:00 [Cluster-devel] cluster/rgmanager/src/daemons resrules.c lhh
2008-01-30 20:00 lhh
2006-10-20 20:59 lhh
2006-10-20 20:57 lhh
2006-10-20 20:29 lhh
2006-10-20 20:29 lhh
2006-08-31 12:00 mgrac
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070531183750.3350.qmail@sourceware.org \
--to=lhh@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.