forked from hummypkg/webif
Don't move files on other devices to Dustbin
This commit is contained in:
parent
8994d016ef
commit
d2e4e10919
@ -36,6 +36,13 @@ if {![exists -proc _del_bindir]} {
|
||||
set dustbin 0
|
||||
}
|
||||
|
||||
# Check if files are on same device as mediaroot
|
||||
set dir [system mediaroot]
|
||||
file stat "$dir/" rootstat
|
||||
set rootdev $rootstat(dev)
|
||||
file stat $file st
|
||||
if {$st(dev) != $rootdev} {set dustbin 0}
|
||||
|
||||
# Directory
|
||||
|
||||
if {[file isdirectory $file]} {
|
||||
|
Loading…
Reference in New Issue
Block a user