utils.strip_root

This commit is contained in:
Einar Forselv 2019-11-25 22:28:04 +01:00
parent a61452fd91
commit ef4ce2ecb4
1 changed files with 12 additions and 0 deletions

View File

@ -24,3 +24,15 @@ def is_true(value):
Evaluates the truthfullness of a bool value in container labels
"""
return value in TRUE_VALUES
def strip_root(path):
"""
Removes the root slash in a path.
Example: /srv/data becomes srv/data
"""
path = path.strip()
if path.startswith('/'):
return path[1:]
return path