[Rt-commit] [svn] r1132 - rt/branches/rt-3.1/sbin
alexmv at pallas.eruditorum.org
alexmv at pallas.eruditorum.org
Tue Jun 22 16:21:52 EDT 2004
Author: alexmv
Date: Tue Jun 22 16:21:52 2004
New Revision: 1132
Modified:
rt/branches/rt-3.1/sbin/rt-test-dependencies.in
Log:
RT-Ticket: 5767
RT-Update: correspond
RT-Status: resolved
* Fix copy/paste error -- the web group isn't a user, it's a _group_.
Modified: rt/branches/rt-3.1/sbin/rt-test-dependencies.in
==============================================================================
--- rt/branches/rt-3.1/sbin/rt-test-dependencies.in (original)
+++ rt/branches/rt-3.1/sbin/rt-test-dependencies.in Tue Jun 22 16:21:52 2004
@@ -259,7 +259,7 @@
print "\tlibs owner (@LIBS_OWNER@)...", (defined getpwnam("@LIBS_OWNER@") ? "found" : "MISSING"), "\n";
print "\tlibs group (@LIBS_GROUP@)...", (defined getgrnam("@LIBS_GROUP@") ? "found" : "MISSING"), "\n";
print "\tweb owner (@WEB_USER@)...", (defined getpwnam("@WEB_USER@") ? "found" : "MISSING"), "\n";
-print "\tweb group (@WEB_GROUP@)...", (defined getpwnam("@WEB_GROUP@") ? "found" : "MISSING"), "\n";
+print "\tweb group (@WEB_GROUP@)...", (defined getgrnam("@WEB_GROUP@") ? "found" : "MISSING"), "\n";
foreach my $type (keys %args) {
next unless ($type =~ /^with-(.*?)$/);
More information about the Rt-commit
mailing list