rm old loggerd debug scripts

This commit is contained in:
Adeeb Shihadeh 2023-11-18 22:20:10 -08:00
parent 17cab9bb50
commit 3d36a0f70d
2 changed files with 0 additions and 16 deletions

View File

@ -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)

View File

@ -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)