allow dummy setting of flags (for dryruns)

git-svn-id: file:///root/webif/svn/pkg/webif/trunk@2554 2a923420-c742-0410-a762-8d5b09965624
This commit is contained in:
hummypkg 2015-11-26 00:33:26 +00:00
parent bb2496a8a7
commit 47b23d76cf
2 changed files with 13 additions and 9 deletions

View File

@ -1,7 +1,7 @@
Package: webif
Priority: optional
Section: web
Version: 1.2.5-9
Version: 1.2.5-10
Architecture: mipsel
Maintainer: af123@hummypkg.org.uk
Depends: webif-channelicons(>=1.1.18),lighttpd(>=1.4.37-2),jim(>=0.76),jim-oo,jim-sqlite3(>=0.76),jim-cgi(>=0.7),jim-binary(>=0.76),service-control(>=2.1),busybox(>=1.20.2-1),lsof(>=4.87),epg(>=1.2.0),hmt(>=2.0.8),ssmtp,anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2-1),stripts(>=1.2.5-3),smartmontools,tmenu(>=1.08),ffmpeg,id3v2,multienv(>=1.6),tcpping(>=1.1),e2fsprogs,wireless-tools(>=29-1),dbupdate,recmon(>=2.0.7)

View File

@ -126,10 +126,12 @@ set ::ts::flagmap {
dedup Deduped
}
ts method setflag {flag} {
set cmd [list /mod/bin/hmt +$flag $file]
if {[catch {exec {*}$cmd}]} {
throw 20 "Unknown flag."
ts method setflag {flag {dummy 0}} {
if {!$dummy} {
set cmd [list /mod/bin/hmt +$flag $file]
if {[catch {exec {*}$cmd}]} {
throw 20 "Unknown flag."
}
}
if {[dict exists $::ts::flagmap $flag]} {
ladd flags $::ts::flagmap($flag)
@ -140,10 +142,12 @@ ts method setflag {flag} {
}
ts method unsetflag {flag} {
set cmd [list /mod/bin/hmt -$flag $file]
if {[catch {exec {*}$cmd}]} {
throw 20 "Unknown flag."
ts method unsetflag {flag {dummy 0}} {
if {!$dummy} {
set cmd [list /mod/bin/hmt -$flag $file]
if {[catch {exec {*}$cmd}]} {
throw 20 "Unknown flag."
}
}
if {[dict exists $::ts::flagmap $flag]} {
lremove flags $::ts::flagmap($flag)