diff options
author | Victor Morales <victor.morales@intel.com> | 2019-05-20 21:03:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-05-20 21:03:39 +0000 |
commit | 0f74a76f923fe264cb0f1c828bc6f8c753452fb9 (patch) | |
tree | b010492314fc87029cd367c01d521b589f1082aa | |
parent | 194d50852b1217a51581ea96d833b5f506d81fd6 (diff) | |
parent | 9a59345158b8d271b31aec038f0fb032a3d5f383 (diff) |
Merge "Preventing installer.sh execution to hang"
-rwxr-xr-x | kud/hosting_providers/vagrant/installer.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kud/hosting_providers/vagrant/installer.sh b/kud/hosting_providers/vagrant/installer.sh index c17f89e8..2e7a3db1 100755 --- a/kud/hosting_providers/vagrant/installer.sh +++ b/kud/hosting_providers/vagrant/installer.sh @@ -78,7 +78,6 @@ function _install_docker { echo "DOCKER_OPTS=\"-H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock --max-concurrent-downloads $max_concurrent_downloads \"" | sudo tee --append /etc/default/docker if [[ -z $(groups | grep docker) ]]; then sudo usermod -aG docker $USER - newgrp docker fi sudo systemctl restart docker |