RouterOS: rename version 6

This commit is contained in:
Steffen Lange 2022-01-13 17:12:20 +01:00
parent c74cc4dd20
commit 3e4ac070b0
2 changed files with 4 additions and 4 deletions

View file

@ -1,17 +0,0 @@
<?php
class MikroTikRouterOSLTS extends PatchBase {
function __construct() {
parent::__construct('MikroTik', 'RouterOS', 'https://mikrotik.com/download');
$this->patch->setBranch('Long-term');
}
function check() : bool {
if ($this->fetch('https://mikrotik.com/download')) {
$this->str_crop('id="routeros"', '</thead>');
return $this->parse('/<th>([\d\.]+) Long-term<\/th>/');
}
return false;
}
}
?>