diff options
author | Greg Sabino Mullane | 2012-01-16 14:27:12 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2012-01-16 14:27:12 +0000 |
commit | cb78e24b9b68d723446bcc0d608f4723471b6a61 (patch) | |
tree | c867291f040d5d43bfba33fcb68aa890e86abee8 /check_postgres.pl | |
parent | 6239600b6c7321d8627e885358e8066595a907ce (diff) |
Remove tabs
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index c14ed1192..0b5ede8df 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -1534,7 +1534,7 @@ sub make_sure_mode_is { $db->{host} = '<none>'; ## Run pg_controldata, grab the mode - $res = open_controldata(); + $res = open_controldata(); my $regex = msg('checkmode-state'); if ($res !~ /$regex\s*(.+)/) { ## no critic (ProhibitUnusedCapture) @@ -3159,8 +3159,8 @@ sub open_controldata { ndie msg('checkpoint-badver2'); } - ## return the pg_controldata output - return $res; + ## return the pg_controldata output + return $res; } @@ -3712,7 +3712,7 @@ sub check_checkpoint { $db->{host} = '<none>'; ## Run pg_controldata, grab the time - $res = open_controldata(); + $res = open_controldata(); my $regex = msg('checkpoint-po'); if ($res !~ /$regex\s*(.+)/) { ## no critic (ProhibitUnusedCapture) @@ -3803,7 +3803,7 @@ sub check_cluster_id { $db->{host} = '<none>'; ## Run pg_controldata, grab the cluster-id - $res = open_controldata(); + $res = open_controldata(); my $regex = msg('checkcluster-id'); if ($res !~ /$regex\s*(.+)/) { ## no critic (ProhibitUnusedCapture) |