Skip to content

Commit

Permalink
Merge pull request #93 from dustymabe/dusty-remove-permissions-check
Browse files Browse the repository at this point in the history
coreos-ostree-importer: remove permissions check for now
  • Loading branch information
dustymabe authored Apr 9, 2020
2 parents b23ced2 + d10ac43 commit 0eebd38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coreos-ostree-importer/coreos_ostree_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ def assert_dirs_permissions(path: str):
logger.warning(f"Directory {d} does not have gid=263!")
founderror = True
if founderror:
raise Exception(f"Found directories with unexpected permissions/ownership")
print(f"XXX: Found directories with unexpected permissions/ownership")
#raise Exception(f"Found directories with unexpected permissions/ownership")


def runcmd(cmd: list, **kwargs: int) -> subprocess.CompletedProcess:
Expand Down

0 comments on commit 0eebd38

Please sign in to comment.