forked from TrueCloudLab/frostfs-testlib
Dev Env should not use sudo by default
This commit is contained in:
parent
be9b3f5855
commit
b039ee9940
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class ServiceAttributes(ParsedAttributes):
|
||||||
class DockerHost(Host):
|
class DockerHost(Host):
|
||||||
"""Manages services hosted in Docker containers running on a local or remote machine."""
|
"""Manages services hosted in Docker containers running on a local or remote machine."""
|
||||||
|
|
||||||
def get_shell(self, sudo: bool = True) -> Shell:
|
def get_shell(self, sudo: bool = False) -> Shell:
|
||||||
host_attributes = HostAttributes.parse(self._config.attributes)
|
host_attributes = HostAttributes.parse(self._config.attributes)
|
||||||
command_inspectors = []
|
command_inspectors = []
|
||||||
if sudo:
|
if sudo:
|
||||||
|
|
Loading…
Reference in a new issue