summaryrefslogtreecommitdiffstats
path: root/modules-available/systemstatus/hooks/main-warning.inc.php
blob: 406ae73cd93f03e9e2580438d839d8d1a948ae78 (plain) (blame)
1
2
3
4
5
6
7
<?php

if (file_exists('/run/reboot-required.pkgs')) {
	$lines = file('/run/reboot-required.pkgs', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
	$lines = array_unique($lines);
	Message::addInfo('systemstatus.update-reboot-required', true, implode(', ', $lines));
}