From bb4b1327ee8ca4489c01308f3027e0f0082f25f5 Mon Sep 17 00:00:00 2001 From: vlivyur Date: Mon, 6 Apr 2026 18:16:12 +0400 Subject: [PATCH] Actually start Docker daemon via systemctl Signed-off-by: vlivyur --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 699e76c6..4ecf3073 100755 --- a/install.sh +++ b/install.sh @@ -301,7 +301,7 @@ start_docker_daemon() { is_dry_run || >&2 echo "Using systemd to manage Docker service" if ( is_dry_run || set -x - $sh_c systemctl enable --now docker.service 2>/dev/null + $sh_c "systemctl enable --now docker.service 2>/dev/null" ); then is_dry_run || echo "INFO: Docker daemon enabled and started" >&2 else