add log message for starting docker

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2016-03-17 14:28:55 +00:00
parent b4560d8876
commit c22d1f36a6

View File

@ -8,6 +8,8 @@ depend()
start()
{
ebegin "Starting Docker"
export DOCKER_RAMDISK="true"
command="${DOCKER_BINARY:-/usr/bin/docker}"
@ -39,6 +41,8 @@ start()
--stderr "${DOCKER_LOGFILE}" \
--stdout "${DOCKER_LOGFILE}" \
-- daemon --pidfile=${pidfile} ${DOCKER_OPTS}
eend $? "Failed to start docker"
}
stop()