Add Memtest86+

This commit is contained in:
Steffen Lange 2021-10-29 13:20:45 +02:00
parent 84f10552e3
commit 80728298cb

14
modules/Memtest.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Memtest extends PatchBase {
function __construct() {
parent::__construct('Samuel Demeulemeester', 'Memtest86+', 'https://www.memtest.org/');
}
function check() : bool {
if ($this->fetch('https://www.memtest.org/'))
return $this->parse('/>LATEST\s+VERSION : ([\d\.]+[a-z]?)</');
return false;
}
}
?>