- assure we have docker installed - add .gitreview file - Fix Python shebangs for packaging Change-Id: If9d78891f9b5a1615a9fb1f4251801eec1f29ed5 Signed-off-by: Gael Chamoulaud (Strider) <gchamoul@redhat.com>
9 lines
303 B
Bash
Executable File
9 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
# Used by Zuul CI to perform extra bootstrapping
|
|
|
|
# Workaround for a potential:
|
|
# Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock
|
|
# See https://docs.docker.com/install/linux/linux-postinstall/
|
|
newgrp docker || true
|