sys info tweaks
authorJason Etheridge <jason@esilibrary.com>
Mon, 12 Aug 2013 21:35:51 +0000 (17:35 -0400)
committerJason Etheridge <jason@esilibrary.com>
Mon, 12 Aug 2013 21:35:51 +0000 (17:35 -0400)
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
installer/wheezy/eg_wheezy_installer.sh
qa/test_output_webifier.pl

index 5d5c4ca..4801856 100755 (executable)
@@ -328,8 +328,9 @@ if [ $LIVETEST ]; then
     su - opensrf sh -c 'export PATH=/openils/bin:$PATH ; cd /home/opensrf/Evergreen/Open-ILS/src/perlmods/ ; make livecheck; echo Return Value = $?'
     echo End of perl live tests =~-._
     echo _.-~= Gathering system information
+    echo ''
     uname -a
-    echo 'select version();' | psql -At
+    echo 'select version();' | su - postgres -c 'psql -At'
     echo ''
     cat /proc/meminfo
     echo ''
index 21df331..36f3f50 100755 (executable)
@@ -6,6 +6,7 @@
 my $state = 'skipping';
 my $error_count = 0;
 my $subpage_count = 0;
+my $subpage = '';
 my $opensrf_tip = '';
 my $evergreen_tip = '';
 
@@ -26,14 +27,15 @@ while (my $line = <>) {
         $evergreen_tip = $1;
     }
     if ($line =~ /_\.-~= (.*)$/) {
+        $subpage = $1;
         $state = 'outputting';
         print_pass_or_fail();
         $error_count = 0;
         $subpage_count++;
-        print MAIN_PAGE qq^\n<li><a href="test.$subpage_count.html">$1</a>^;
+        print MAIN_PAGE qq^\n<li><a href="test.$subpage_count.html">$subpage</a>^;
         open  SUB_PAGE, ">test.$subpage_count.html";
-        print SUB_PAGE html_header($1);
-        print SUB_PAGE "<h1>$1</h1>\n<pre>";
+        print SUB_PAGE html_header($subpage);
+        print SUB_PAGE "<h1>$subpage</h1>\n<pre>";
     }
     if ($state eq 'outputting') {
         my $class = 'output ';
@@ -75,6 +77,9 @@ while (my $line = <>) {
         ) {
             $class .= 'comment ';
         }
+        if ($subpage eq 'Gathering system information') {
+            $class = '';
+        }
         chomp $line;
         my $html_line = "<span class='$class'>$line</span>";
         print SUB_PAGE "$html_line\n";