mirror of
https://github.com/unraid/webgui.git
synced 2026-05-01 23:39:21 -05:00
More updates to plugin manager - remove dynamix check
This commit is contained in:
@@ -367,10 +367,10 @@ if ($argc < 2) {
|
||||
exit(1);
|
||||
}
|
||||
$method = $argv[1];
|
||||
$builtin = ['unRAIDServer','dynamix'];
|
||||
$builtin = ['unRAIDServer'];
|
||||
|
||||
// plugin checkall
|
||||
// check all installed plugins
|
||||
// check all installed plugins, except built-in
|
||||
//
|
||||
if ($method == "checkall") {
|
||||
foreach (glob("/var/log/plugins/*", GLOB_NOSORT) as $link) {
|
||||
@@ -386,6 +386,9 @@ if ($method == "checkall") {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
// plugin checkos
|
||||
// check built-in only
|
||||
//
|
||||
if ($method == "checkos") {
|
||||
foreach ($builtin as $link) {
|
||||
// only consider symlinks
|
||||
|
||||
Reference in New Issue
Block a user