Limited test ownership to id and no longer change group on files

This commit is contained in:
David Murphy 2023-10-12 18:27:59 -06:00 committed by Pedro Algarvio
parent 6d7c2f0dd1
commit cd236c42d9

View file

@ -273,7 +273,9 @@ def test_paths_log_rotation(
# change ownership of appropriate paths to user
for _path in log_pkg_paths:
chg_ownership_cmd = f"chown -R {test_account.username}:{test_account.username} {_path}"
chg_ownership_cmd = (
f"chown -R {test_account.username} {_path}"
)
ret = salt_call_cli.run(
"--local", "cmd.run", chg_ownership_cmd
)