Name

HouseKeeping — specify number of seconds between periodic "house keeping" jobs

SYNOPSIS

interval

DESCRIPTION

Specify periodic time interval at which the Interchange server should wake up and look for user reconfiguration requests and hung processes. On some systems, this wakeup is the only time the server will terminate in response to a -stop command.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Adjusting the HouseKeeping interval to 120 seconds

HouseKeeping 2 minutes

Example: Adjusting the HouseKeeping interval to 1 hour

HouseKeeping 1 hour

NOTES

AVAILABILITY

HouseKeeping is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 461

['HouseKeeping',     'time',          60],

Source: lib/Vend/Config.pm
Line 4115 (context shows lines 4115-4127)

sub parse_time {
my($var, $value) = @_;
my($n);

return $value unless $value;

#  $C->{Source}->{$var} = [$value];

$n = time_to_seconds($value);
config_error("Bad time format ('$value') in the $var directive\n")
unless defined $n;
$n;
}

AUTHORS

Interchange Development Group

SEE ALSO

HouseKeepingCron(7ic), PIDcheck(7ic)

DocBook! Interchange!