Compare commits

...

5 Commits

Author SHA1 Message Date
geaaru 4b5d3487c1 Merge pull request #24 from Sabayon/develop
New features
2019-11-06 14:43:02 +01:00
Ettore Di Giacinto 1853c68b0d Merge pull request #23 from Sabayon/develop
Merge Develop
2019-09-11 20:31:26 +02:00
geaaru 7c059c3c9a Merge pull request #22 from gktrk/typo-fix
sabayondevkit-functions.sh: fix a typo, s/of/or/
2019-09-10 10:49:27 +02:00
Göktürk Yüksek e274ddffa3 sabayondevkit-functions.sh: fix a typo, s/of/or/ 2019-09-09 10:28:17 -04:00
Ettore Di Giacinto 3be4345ae4 Merge pull request #19 from Sabayon/develop
builder: Add support for git portage tarball
2019-04-27 15:57:22 +02:00
+1 -1
View File
@@ -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; }