8 lines
211 B
Plaintext
8 lines
211 B
Plaintext
{
|
|
my $sysconfig = $DB->get('sysconfig')
|
|
|| $DB->new_record('sysconfig', { type => 'configuration' });
|
|
|
|
$sysconfig->prop('InstallEpoch')
|
|
|| $sysconfig->set_prop('InstallEpoch', time);
|
|
}
|