Skip to content
Snippets Groups Projects
Commit 83b2e104 authored by Steven Dake's avatar Steven Dake
Browse files

Make setup_docker.sh bashate compliant

Change-Id: I60ea3b103d1ebe6f9e1b02ef8c91868d7538cdee
Partially-Implements: blueprint bashate-gate
parent 70b8f406
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ set -xu
DOCKER_MIN_VERSION=1.6.0
function check_prerequisites() {
function check_prerequisites {
if [[ $EUID -ne 0 ]]; then
echo "You must execute this script as root." 1>&2
exit 1
......@@ -24,7 +24,7 @@ function check_prerequisites() {
fi
}
function check_docker_version() {
function check_docker_version {
local docker_version
local result
if type docker &>/dev/null; then
......@@ -37,7 +37,7 @@ function check_docker_version() {
return 1
}
function start_docker() {
function start_docker {
pkill -x -9 docker
if check_docker_version; then
docker -d &>/dev/null &
......@@ -48,7 +48,7 @@ function start_docker() {
fi
}
function create_group() {
function create_group {
getent group docker
result=$?
if [ $result -eq 0 ]; then # 0: key already exists, nothing to do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment