From 3794693675fc993af3112cfe7cdf990e7cc7e891 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Wed, 29 Jul 2020 11:31:58 +0200 Subject: luci-app-dockerman: model/docker: socket path variable name Signed-off-by: Florian Eckert --- applications/luci-app-dockerman/luasrc/model/docker.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'applications') diff --git a/applications/luci-app-dockerman/luasrc/model/docker.lua b/applications/luci-app-dockerman/luasrc/model/docker.lua index aadc0cdaa..891afe747 100644 --- a/applications/luci-app-dockerman/luasrc/model/docker.lua +++ b/applications/luci-app-dockerman/luasrc/model/docker.lua @@ -272,7 +272,7 @@ end _docker.new = function() local host = nil local port = nil - local socket = nil + local socket_path = nil local debug_path = nil local remote = uci:get_bool("dockerd", "globals", "remote_endpoint") @@ -280,7 +280,7 @@ _docker.new = function() host = uci:get("dockerd", "globals", "remote_host") or nil port = uci:get("dockerd", "globals", "remote_port") or nil else - socket = uci:get("dockerd", "globals", "socket_path") or "/var/run/docker.sock" + socket_path = uci:get("dockerd", "globals", "socket_path") or "/var/run/docker.sock" end local debug = uci:get_bool("dockerd", "globals", "debug") @@ -291,7 +291,7 @@ _docker.new = function() _docker.options = { host = host, port = port, - socket_path = socket, + socket_path = socket_path, debug = debug, debug_path = debug_path, status_path = uci:get("dockerd", "globals", "status_path") or "/tmp/.docker_status" -- cgit v1.2.3