Merge pull request #30 from jsavargas/fix-removepkg

Removepkg Fixed packages
This commit is contained in:
UnRAID_ES 2022-11-01 21:21:41 -03:00 committed by GitHub
commit 07a69502b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 8 deletions

Binary file not shown.

View File

@ -3,8 +3,8 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "NerdTools">
<!ENTITY author "UnRAIDES">
<!ENTITY version "2022.10.24">
<!ENTITY md5 "983a7c824d8243cb268bb3d940d700e5">
<!ENTITY version "2022.11.01">
<!ENTITY md5 "5cd31bc67b3b3fb0f32e4e8a6c89216c">
<!ENTITY launch "Settings/&name;">
<!ENTITY github "UnRAIDES/unRAID-&name;">
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/main/plugin/&name;.plg">
@ -17,6 +17,8 @@
<CHANGES>
##&name;
###2022.11.01
- Fixed: Removepkg Fixed packages
###2022.10.24
- Added: wget2-2.0.0
- Added: gpgme-1.16.0 as dependency of wget2

View File

@ -128,12 +128,8 @@ foreach ($pkg_cfg as $pkg_name => $pkg_pref) { // get preferences for each packa
}
} elseif ($pkg_pref == 'no' && $pkg_download_status && $argu) {
if($plugins){
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.'*_nerdtools.txz 2>&1; rm '.$pkg_extra_path.$pkg_name.'*_nerdtools.txz 2>&1';
}
$pkg_msg = 'Uninstalling and deleting';
$pkg_cmd = 'removepkg '.$pkg_extra_path.$pkg_name.'*_nerdtools.txz 2>&1; rm '.$pkg_extra_path.$pkg_name.'*_nerdtools.txz 2>&1';
}
if (!empty($pkg_cmd)) {