Merge pull request #19 from jsavargas/2022.10.06

fix delete packages from users
This commit is contained in:
UnRAID_ES 2022-10-07 00:37:21 +02:00 committed by GitHub
commit 4a883070eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

Binary file not shown.

View File

@ -3,8 +3,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "NerdTools">
<!ENTITY author "UnRAIDES">
<!ENTITY version "2022.10.05">
<!ENTITY md5 "e7e64da9ebf0f9028305bcb8fe11d858">
<!ENTITY version "2022.10.06">
<!ENTITY md5 "13ef1692a3259f149692fa213e39f5b1">
<!ENTITY launch "Settings/&name;">
<!ENTITY github "UnRAIDES/unRAID-&name;">
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/main/plugin/&name;.plg">

View File

@ -128,7 +128,7 @@ foreach ($pkg_cfg as $pkg_name => $pkg_pref) { // get preferences for each packa
logger("$pkg_name in use by another plugin, not uninstalled.",$argq);
}else{
$pkg_msg = 'Uninstalling and deleting';
$pkg_cmd = 'removepkg '.$pkg_extra_path.$pkg_name.'* 2>&1; rm '.$pkg_extra_path.$pkg_name.'* 2>&1';
$pkg_cmd = 'removepkg '.$pkg_extra_path.$pkg_name.'*_nerdtools.txz 2>&1; rm '.$pkg_extra_path.$pkg_name.'*_nerdtools.txz 2>&1';
}
}
@ -155,8 +155,8 @@ foreach ($pkg_cfg as $pkg_name => $pkg_pref) { // get preferences for each packa
}
logger('Cleaning up packages...');
$cmd = "find ".$pkg_extra_path." -type f ! -name 'packages.json' ! -name 'packages-desc'".$pkg_find." -delete 2>&1";
shell_exec($cmd);
#$cmd = "find ".$pkg_extra_path." -type f ! -name 'packages.json' ! -name 'packages-desc'".$pkg_find." -delete 2>&1";
#shell_exec($cmd);
logger('All packages processed...');