We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f459659 commit e4a06a9Copy full SHA for e4a06a9
app/Http/Controllers/SystemController.php
@@ -212,15 +212,15 @@ public function getSysStations(){
212
* @return Json
213
*/
214
public function sysGetSpoolList(){
215
- $command = "uustat -a| grep -v uuadm | grep -v sudo | grep -v bash" ;
+ $command = 'uustat -a| grep -v uuadm | grep -v sudo | grep -v bash | grep -v "\-C"' ;
216
$output=exec_cli($command) ;
217
$output = explode("\n", $output);
218
$spool=[];
219
220
for ($i = "0" ; $i < count($output); $i++) {
221
if(!empty($output[$i])) {
222
$fields = explode(" ", $output[$i]);
223
- if ( $fields[6] != "uuadmin"){
+ if ( $fields[6] != "uuadm"){
224
$count=count($fields);
225
$emails=array();
226
$size= 0;
0 commit comments