diff --git a/webif/lib/auto/plugin/decrypt/queue.hook b/webif/lib/auto/plugin/decrypt/queue.hook index 05c74b7..67124a5 100644 --- a/webif/lib/auto/plugin/decrypt/queue.hook +++ b/webif/lib/auto/plugin/decrypt/queue.hook @@ -103,7 +103,7 @@ proc ::decrypt::dequeue {q ts} { if {$mode eq "dlna"} { log " DLNA: $url" 0 - if {[catch {exec wget -O "$tmp/$bfile" $url} msg opts]} { + if {[catch {system qexec wget -O "$tmp/$bfile" $url} msg opts]} { ::auto::log "Wget error - $msg - $opts" } @@ -118,7 +118,7 @@ proc ::decrypt::dequeue {q ts} { } ::auto::log "Using key ($key)" 2 - if {[catch {exec /mod/bin/stripts -@ $key $rfile "$tmp/[\ + if {[catch {system qexec /mod/bin/stripts -@ $key $rfile "$tmp/[\ file rootname $bfile]" } msg opts]} { ::auto::log "Decrypt error - $msg - $opts" system endop decrypt diff --git a/webif/lib/auto/plugin/shrink/queue.hook b/webif/lib/auto/plugin/shrink/queue.hook index 32477f2..6ea417a 100644 --- a/webif/lib/auto/plugin/shrink/queue.hook +++ b/webif/lib/auto/plugin/shrink/queue.hook @@ -57,7 +57,7 @@ proc ::shrink::dequeue {q ts} { log " Shrinking..." 0 if {[catch { foreach line [split \ - [exec nice -n 19 /mod/bin/stripts -q $file $tmp/shrunk] \ + [system qexec nice -n 19 /mod/bin/stripts -q $file $tmp/shrunk] \ "\n"] { set stats [string trim $line] log $stats 0