Added ignore_crc option to nodelist import

This commit is contained in:
2023-09-14 23:05:05 +10:00
parent ff8c370d86
commit ec5c28a03e
2 changed files with 11 additions and 6 deletions

View File

@@ -17,6 +17,7 @@ class NodelistImport extends Command
protected $signature = 'nodelist:import'
.' {file : File ID | filename}'
.' {domain? : Domain Name}'
.' {--I|ignorecrc : Ignore the CRC}'
.' {--D|delete : Delete old data for the date}'
.' {--U|unlink : Delete file after import}'
.' {--T|test : Dry run}';
@@ -40,7 +41,8 @@ class NodelistImport extends Command
$this->argument('domain'),
$this->option('delete'),
$this->option('unlink'),
$this->option('test')
$this->option('test'),
$this->option('ignorecrc'),
);
}
}