SystemRescue: new URL

This commit is contained in:
Steffen Lange 2022-03-12 22:27:45 +01:00
parent bc9b91faf0
commit ddd5202264

View file

@ -2,10 +2,10 @@
class SysRescCd extends PatchBase {
function __construct() {
parent::__construct('Francois Dupoux', 'SystemRescueCd', 'http://www.system-rescue-cd.org/Download/');
parent::__construct('Francois Dupoux', 'SystemRescueCd', 'http://www.system-rescue.org/Download/');
}
function check() : bool {
if ($this->fetch('http://www.system-rescue-cd.org/Detailed-packages-list/'))
if ($this->fetch('http://www.system-rescue.org/Detailed-packages-list/'))
return $this->parse('/<strong>SystemRescue-([\d\.]+)<\/strong>/');
return false;
}