Add Clonezilla

This commit is contained in:
Steffen Lange 2020-04-01 17:22:01 +02:00
parent e46dbb75a7
commit dd3be30e56
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<?php
class ClonezillaAlternative extends PatchBase {
function __construct() {
parent::__construct('NCHC Free Software Lab', 'Clonezilla', 'https://clonezilla.org/');
$this->patch->setBranch('Alternative');
}
function check() : bool {
if ($this->fetch('https://clonezilla.org/downloads.php'))
return $this->parse('/<b>alternative stable<\/b>[\s]*-[\s]*<font color=red>([\d]+-[a-z]+)/');
return false;
}
}
?>