This commit is contained in:
Marc Beninca 2024-02-16 21:55:09 +01:00
parent e11b92e57b
commit 4961209719
3 changed files with 9 additions and 10 deletions

View file

@ -1,6 +1,5 @@
import os
import shutil
import subprocess
import ps
@ -21,18 +20,18 @@ def empty_file(path: str):
def get_mount_uuid(path: str):
return ps.run_line(
('findmnt'),
('--noheadings'),
('findmnt',),
('--noheadings',),
('--output', 'UUID'),
(path),
(path,),
)
def get_path_mount(path: str):
return ps.run_line(
('stat'),
('stat',),
('--format', '%m'),
(path),
(path,),
)