mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
Fix broken gitfs ssh tests on nightly builds
This commit is contained in:
parent
5bb6c0f638
commit
19669adde2
1 changed files with 7 additions and 0 deletions
|
@ -6,6 +6,7 @@ import errno
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
import subprocess
|
||||||
import tempfile
|
import tempfile
|
||||||
import textwrap
|
import textwrap
|
||||||
|
|
||||||
|
@ -595,6 +596,12 @@ class GitPillarSSHTestBase(GitPillarTestBase):
|
||||||
)
|
)
|
||||||
self.make_repo(root_dir, user=self.username)
|
self.make_repo(root_dir, user=self.username)
|
||||||
self.make_extra_repo(root_dir, user=self.username)
|
self.make_extra_repo(root_dir, user=self.username)
|
||||||
|
# Force git repo ownership to prevent "fatal: detected dubious
|
||||||
|
# ownership in repository" errors.
|
||||||
|
subprocess.run(
|
||||||
|
["chown", "-R", f"{self.username}:users", f"/home/{self.username}"],
|
||||||
|
check=True,
|
||||||
|
)
|
||||||
log.info("%s.setUp() complete.", self.__class__.__name__)
|
log.info("%s.setUp() complete.", self.__class__.__name__)
|
||||||
|
|
||||||
def get_pillar(self, ext_pillar_conf):
|
def get_pillar(self, ext_pillar_conf):
|
||||||
|
|
Loading…
Add table
Reference in a new issue