inclure lanScan options in presets

This commit is contained in:
2024-10-16 21:41:57 +02:00
parent 653bb604f5
commit 9f2826d522
4 changed files with 78 additions and 78 deletions

View File

@ -9,19 +9,17 @@ $presets = [
'-PS' => 'microsoft-ds',
'-F' => true,
'-T5' => true,
'--stylesheet' => "$BASEDIR/lanScan.xsl"
'--stylesheet' => "$BASEDIR/lanScan.xsl",
'refreshPeriod' => 60,
'sudo' => false,
],
"host" => [
'-Pn' => true,
'-F' => true,
'-sV' => true,
'-T5' => true,
'--stylesheet' => "$BASEDIR/hostScan.xsl"
'-Pn' => true,
'-F' => true,
'-sV' => true,
'-T5' => true,
'--stylesheet' => "$BASEDIR/hostScan.xsl",
'refreshPeriod' => 60,
'sudo' => false,
],
];
$saveAs = null;
$compareWith = null;
$refreshPeriod = 60;
$sudo = true;
];