mirror of
https://github.com/Squidly271/community.applications.git
synced 2025-06-03 14:52:13 +08:00
more php
This commit is contained in:
parent
181126339d
commit
fc1edbed34
BIN
archive/community.applications-2023.01.20-x86_64-1.txz
Normal file
BIN
archive/community.applications-2023.01.20-x86_64-1.txz
Normal file
Binary file not shown.
@ -2,9 +2,9 @@
|
||||
106b521c1feebda4d7b3f558cc016cda ./CA_notices.page
|
||||
eb1f0ee4148747c0473e73e4e973994f ./ca_settings.page
|
||||
e8d29607ec792ddf9f6832b10ee70fdc ./default.cfg
|
||||
d6ad6782e91a4d20d54778cab0f302de ./include/exec.php
|
||||
ca555034b6a9134a338cac8e8acae607 ./include/exec.php
|
||||
3f43116c462378d9578a90c413b93afa ./include/helpers.php
|
||||
3dcc75f434545ca6bee2327bf9888a35 ./include/paths.php
|
||||
8e053d6cd83fbe2202c13b692beabb4f ./include/paths.php
|
||||
532fffdf939594c143e679da02bd841e ./javascript/libraries.js
|
||||
71f911a818d88d3d567f8a2898094ee2 ./README.md
|
||||
ec075d8b9758ba00bda9b02c4692f972 ./scripts/checkForUpdates.php
|
||||
|
@ -2360,10 +2360,10 @@ function enableActionCentre() {
|
||||
$o['actionCentre'] = true;
|
||||
|
||||
if ( ! $o['Blacklist'] && ! $o['Deprecated'] ) {
|
||||
if ( $extraBlacklist[$o['Repository']] ) {
|
||||
if ( isset($extraBlacklist[$o['Repository']]) ) {
|
||||
$o['Blacklist'] = true;
|
||||
}
|
||||
if ( $extraDeprecated[$o['Repository']] ) {
|
||||
if ( isset($extraDeprecated[$o['Repository']]) ) {
|
||||
$o['Deprecated'] = true;
|
||||
}
|
||||
}
|
||||
|
@ -8,6 +8,21 @@
|
||||
|
||||
$CA = "community.applications";
|
||||
|
||||
if ( ! isset($dockerManPaths) ) {
|
||||
$dockerManPaths = [
|
||||
'autostart-file' => "/var/lib/docker/unraid-autostart",
|
||||
'update-status' => "/var/lib/docker/unraid-update-status.json",
|
||||
'template-repos' => "/boot/config/plugins/dockerMan/template-repos",
|
||||
'templates-user' => "/boot/config/plugins/dockerMan/templates-user",
|
||||
'templates-usb' => "/boot/config/plugins/dockerMan/templates",
|
||||
'images' => "/var/lib/docker/unraid/images",
|
||||
'user-prefs' => "/boot/config/plugins/dockerMan/userprefs.cfg",
|
||||
'plugin' => "$docroot/plugins/dynamix.docker.manager",
|
||||
'images-ram' => "$docroot/state/plugins/dynamix.docker.manager/images",
|
||||
'webui-info' => "$docroot/state/plugins/dynamix.docker.manager/docker.json"
|
||||
];
|
||||
}
|
||||
|
||||
$caPaths['tempFiles'] = "/tmp/$CA/tempFiles"; /* path to temporary files */
|
||||
$caPaths['flashDrive'] = "/boot/config/plugins/$CA";
|
||||
$caPaths['templates-community'] = $caPaths['tempFiles']."/templates-community-apps"; /* templates and temporary files stored here. Deleted every update of applications */
|
||||
|
Loading…
x
Reference in New Issue
Block a user