From e274ddffa3e13c2c77e873a9411b0a7bb0abd575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kt=C3=BCrk=20Y=C3=BCksek?= Date: Mon, 9 Sep 2019 10:28:17 -0400 Subject: [PATCH] sabayondevkit-functions.sh: fix a typo, s/of/or/ --- sabayondevkit-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sabayondevkit-functions.sh b/sabayondevkit-functions.sh index e75eeeb..21b6172 100644 --- a/sabayondevkit-functions.sh +++ b/sabayondevkit-functions.sh @@ -8,7 +8,7 @@ check_docker_requirements(){ if [ "$(id -u)" != "0" ]; then groups | grep -q docker || echo "--> If you are not running the script as root, your user should be in the docker group to use it. (sudo gpasswd -a $USER docker)" fi - ps aux | grep -q '[d]ocker' || echo "--> Be sure to have the docker daemon running (sudo systemctl start docker) of configure it to run on boot (sudo systemctl enable docker). Trying to start it anyway" && systemctl start docker || true + ps aux | grep -q '[d]ocker' || echo "--> Be sure to have the docker daemon running (sudo systemctl start docker) or configure it to run on boot (sudo systemctl enable docker). Trying to start it anyway" && systemctl start docker || true } die() { echo "$@" 1>&2 ; exit 1; }