Support the following derectives.
authorYoshiyuki Asaba <y-asaba at pgfoundry.org>
Tue, 30 Oct 2007 01:13:17 +0000 (01:13 +0000)
committerYoshiyuki Asaba <y-asaba at pgfoundry.org>
Tue, 30 Oct 2007 01:13:17 +0000 (01:13 +0000)
  - client_idle_limit
  - authentication_timeout
  - recovery_1st_stage_command
  - recovery_2nd_stage_command
  - failover_command
  - failback_command

lang/en.lang.php

index 3888d02fdcfc1284ecc35965ba03f5bce0bc0988..5111e72d63d345015ffa5a75fa86811acc6d26c6 100644 (file)
@@ -33,9 +33,13 @@ $message = array(
     'descBackend_data_directory' => 'PostgreSQL database directory',
     'descChild_life_time' => 'Life of an idle child process in seconds',
     'descChild_max_connections' => 'If child_max_connections connections were received, child exits',
+       'descChild_idle_limit' => 'Timeout in seconds while waiting for a query from a client',
+       'descAuthentication_timeout' => 'Maximum time in seconds to complete client authentication',
     'descConnection_cache' => 'If true, cache connections to PostgreSQL',
     'descConnection_life_time' => 'Life time for each idle connection in seconds',
     'descEnable_query_cache' => 'Perform query cache',
+    'descFailover_command' => 'Command to be executed when detaching a node',
+    'descFailback_command' => 'Command to be executed when attaching a node',
     'descHealth_check_period' => 'Specifies the interval for next health checking. 0 means no health checking',
     'descHealth_check_timeout' => 'Pgpool does "health check" periodically to detect PostgreSQL servers down, network communication problems or as such',
     'descHealth_check_user' => 'PostgreSQL user name for the health checking',
@@ -57,6 +61,8 @@ $message = array(
     'descPrint_timestamp' => 'If true, timestamp is added to each log line',
        'descRecovery_user' => 'PostgreSQL user name for online recovery',
        'descRecovery_password' => 'PostgreSQL user password for online recovery',
+    'descRecovery_1st_stage_command' => 'Recovery command to be excuted on the first stage'
+    'descRecovery_2nd_stage_command' => 'Recovery command to be excuted on the second stage'
     'descReplication_mode' => 'Set this to true if you are going to use replication functionality',
     'descReplication_stop_on_mismatch' => 'Stop replication mode on data mismatch between master and secondary',
        'descReplicate_select' => 'If true, replicate SELECT queries. If false, send only to master ',