From fbfacb44c430ca450b3b8e18ec28bb940ffa976e Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 27 Aug 2016 01:34:37 -0400 Subject: [PATCH] Add missing mkdir calls --- functions | 1 + 1 file changed, 1 insertion(+) diff --git a/functions b/functions index a84fff8..623866a 100755 --- a/functions +++ b/functions @@ -367,6 +367,7 @@ service_create() { mkdir -p "$SERVICE_ROOT" || dokku_log_fail "Unable to create service directory" mkdir -p "$SERVICE_ROOT/data" || dokku_log_fail "Unable to create service data directory" + mkdir -p "$SERVICE_ROOT/config" || dokku_log_fail "Unable to create service config directory" rootpassword=$(openssl rand -hex 16) password=$(openssl rand -hex 16) echo "$rootpassword" > "$SERVICE_ROOT/ROOTPASSWORD"