removed command output
would give the appearance that it hung
This commit is contained in:
parent
bd08953a20
commit
fcce244e90
|
@ -3,7 +3,7 @@
|
|||
<!DOCTYPE PLUGIN [
|
||||
<!ENTITY name "NerdPack">
|
||||
<!ENTITY author "dmacias72">
|
||||
<!ENTITY version "2015.12.15">
|
||||
<!ENTITY version "2015.12.15a">
|
||||
<!ENTITY launch "Settings/&name;">
|
||||
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
|
||||
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
|
||||
|
@ -17,6 +17,8 @@
|
|||
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;">
|
||||
|
||||
<CHANGES>
|
||||
###2015.12.15a
|
||||
- remove command output
|
||||
###2015.12.15
|
||||
- minor fixes
|
||||
###2015.12.14
|
||||
|
|
|
@ -75,10 +75,9 @@ foreach($pkg_cfg as $pkg_name => $pkg_pref) { //get preferences for each package
|
|||
}
|
||||
if(!empty($pkg_cmd)){
|
||||
logger("$pkg_msg $pkg_name package...");
|
||||
usleep(100000);
|
||||
$output = shell_exec($pkg_cmd);
|
||||
logger($output);
|
||||
usleep(100000);
|
||||
shell_exec($pkg_cmd);
|
||||
//$output = shell_exec($pkg_cmd);
|
||||
//logger($output);
|
||||
}else
|
||||
logger($pkg_name." package up to date");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user