[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.9.4-439-gf016c70

Shawn Moore sartak at bestpractical.com
Tue Nov 9 14:12:25 EST 2010


The branch, 3.9-trunk has been updated
       via  f016c70c76eb90addf4c608236da0daf8253920b (commit)
      from  66a9bd96f33f7a94d29ca2a17d7fe52754bd5218 (commit)

Summary of changes:
 sbin/rt-setup-database.in |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

- Log -----------------------------------------------------------------
commit f016c70c76eb90addf4c608236da0daf8253920b
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Nov 9 11:32:05 2010 -0500

    Consistent punctuation during make initdb

diff --git a/sbin/rt-setup-database.in b/sbin/rt-setup-database.in
index 7c11b04..f8d30a9 100755
--- a/sbin/rt-setup-database.in
+++ b/sbin/rt-setup-database.in
@@ -189,7 +189,7 @@ foreach my $action ( @actions ) {
     no strict 'refs';
     my ($status, $msg) = *{ 'action_'. $action }{'CODE'}->( %args );
     error($action, $msg) unless $status;
-    print $msg ."\n" if $msg;
+    print $msg .".\n" if $msg;
     print "Done.\n";
 }
 
@@ -237,7 +237,7 @@ sub action_acl {
     my ($status, $msg) = RT::Handle->CheckCompatibility( $dbh, 'pre' );
     return ($status, $msg) unless $status;
 
-    print "Now inserting database ACLs\n";
+    print "Now inserting database ACLs.\n";
     return RT::Handle->InsertACL( $dbh, $args{'datafile'} || $args{'datadir'} );
 }
 
@@ -250,7 +250,7 @@ sub action_coredata {
     my ($status, $msg) = RT::Handle->CheckCompatibility( $RT::Handle->dbh, 'pre' );
     return ($status, $msg) unless $status;
 
-    print "Now inserting RT core system objects\n";
+    print "Now inserting RT core system objects.\n";
     return $RT::Handle->InsertInitialData;
 }
 
@@ -261,7 +261,7 @@ sub action_insert {
     my ($status, $msg) = RT::Handle->CheckCompatibility( $RT::Handle->dbh, 'pre' );
     return ($status, $msg) unless $status;
 
-    print "Now inserting data\n";
+    print "Now inserting data.\n";
     my $file = $args{'datafile'};
     $file = $RT::EtcPath . "/initialdata" if $init && !$file;
     $file ||= $args{'datadir'}."/content";

-----------------------------------------------------------------------


More information about the Rt-commit mailing list