mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-02 15:51:49 +02:00
Added automated DNSSEC DS Rotator script
This commit is contained in:
parent
e23acc591d
commit
47dcdc04c1
3 changed files with 149 additions and 0 deletions
|
@ -6,6 +6,7 @@ $cronJobConfig = [
|
|||
'backup' => false, // Set to true to enable
|
||||
'gtld_mode' => false, // Set to true to enable
|
||||
'spec11' => false, // Set to true to enable
|
||||
'dnssec' => false, // Set to true to enable
|
||||
];
|
||||
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
@ -32,6 +33,10 @@ if ($cronJobConfig['backup']) {
|
|||
$scheduler->php('/opt/registry/automation/backup-upload.php')->at('30 * * * *');
|
||||
}
|
||||
|
||||
if ($cronJobConfig['dnssec']) {
|
||||
$scheduler->php('/opt/registry/automation/dnssec-ds-rotator.php')->at('0 0 * * *');
|
||||
}
|
||||
|
||||
if ($cronJobConfig['spec11']) {
|
||||
$scheduler->php('/opt/registry/automation/abusemonitor.php')->at('30 * * * *');
|
||||
$scheduler->php('/opt/registry/automation/abusereport.php')->at('5 0 * * *');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue