import rt 3.8.11
[freeside.git] / rt / sbin / rt-test-dependencies
index 7957a48..3d8ede5 100644 (file)
@@ -1,4 +1,4 @@
-#!/Users/falcone/perl5/perlbrew/bin/perl
+#!/usr/bin/perl
 # BEGIN BPS TAGGED BLOCK {{{
 #
 # COPYRIGHT:
@@ -303,7 +303,7 @@ Log::Dispatch::Perl
 
 $deps{'FASTCGI'} = [ text_to_hash( << '.') ];
 CGI 3.38
-FCGI
+FCGI 0.74
 CGI::Fast 
 .
 
@@ -487,7 +487,7 @@ sub resolve_dep {
         unless ( $configured ) {
             print <<END;
 You haven't configured the CPAN shell yet.
-Please run `/Users/falcone/perl5/perlbrew/bin/perl -MCPAN -e shell` to configure it.
+Please run `/usr/bin/perl -MCPAN -e shell` to configure it.
 END
             exit(1);
         }
@@ -512,9 +512,9 @@ this situatation:
 
 1) use a different tool to install dependencies by running setting the following
    shell environment variable and rerunning this tool:
-    RT_FIX_DEPS_CMD='/Users/falcone/perl5/perlbrew/bin/perl -MCPAN -e"install %s"'
+    RT_FIX_DEPS_CMD='/usr/bin/perl -MCPAN -e"install %s"'
 2) Attempt to configure CPAN by running:
-   `/Users/falcone/perl5/perlbrew/bin/perl -MCPAN -e shell` program from shell.
+   `/usr/bin/perl -MCPAN -e shell` program from shell.
    If this fails, you may have to manually upgrade CPAN (see below)
 3) Try to update the CPAN client. Download it from:
    http://search.cpan.org/dist/CPAN and try again
@@ -588,12 +588,12 @@ sub check_perl_version {
 
 sub check_users {
   section("users");
-  print_found("rt group (www)",      defined getgrnam("www"));
+  print_found("rt group (www-data)",      defined getgrnam("www-data"));
   print_found("bin owner (root)",   defined getpwnam("root"));
   print_found("libs owner (root)", defined getpwnam("root"));
   print_found("libs group (bin)", defined getgrnam("bin"));
-  print_found("web owner (www)",    defined getpwnam("www"));
-  print_found("web group (www)",   defined getgrnam("www"));
+  print_found("web owner (www-data)",    defined getpwnam("www-data"));
+  print_found("web group (www-data)",   defined getgrnam("www-data"));
 }