parent
fe554ceee3
commit
07ea94cf7b
2 changed files with 0 additions and 16 deletions
@ -1,8 +0,0 @@ |
||||
import os |
||||
from openpilot.system.hardware.hw import Paths |
||||
from openpilot.system.loggerd.uploader import UPLOAD_ATTR_NAME, UPLOAD_ATTR_VALUE |
||||
|
||||
for folder in os.walk(Paths.log_root()): |
||||
for file1 in folder[2]: |
||||
full_path = os.path.join(folder[0], file1) |
||||
os.setxattr(full_path, UPLOAD_ATTR_NAME, UPLOAD_ATTR_VALUE) |
@ -1,8 +0,0 @@ |
||||
#!/usr/bin/env python3 |
||||
import os |
||||
import sys |
||||
from openpilot.system.loggerd.uploader import UPLOAD_ATTR_NAME |
||||
|
||||
for fn in sys.argv[1:]: |
||||
print(f"unmarking {fn}") |
||||
os.removexattr(fn, UPLOAD_ATTR_NAME) |
Loading…
Reference in new issue