Skip to content

Commit

Permalink
Add chahgelogs for saltstack#64141 and saltstack#64158
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed May 2, 2023
1 parent 08375b7 commit 173d476
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog/64141.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Make salt user's home /opt/saltstack/salt
1 change: 1 addition & 0 deletions changelog/64158.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Salt minion runs with salt group permissions
2 changes: 1 addition & 1 deletion pkg/tests/integration/test_salt_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_salt_user_home(install_salt):
"""
Test the correct user is running the Salt Master
"""
proc = subprocess.run(["getent", "salt"], check=False, capture_output=True)
proc = subprocess.run(["getent", "passwd", "salt"], check=False, capture_output=True)
assert proc.returncode == 0
home = ""
try:
Expand Down

0 comments on commit 173d476

Please sign in to comment.