mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Limited test ownership to id and no longer change group on files
This commit is contained in:
parent
6d7c2f0dd1
commit
cd236c42d9
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue