Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 600340 - =app-emulation/docker-1.13.0_rc1 /etc/conf.d/docker configuration directives/comments inconsistently named
Summary: =app-emulation/docker-1.13.0_rc1 /etc/conf.d/docker configuration directives/...
Status: RESOLVED OBSOLETE
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Tianon
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-11-20 19:35 UTC by Walter
Modified: 2020-01-15 10:45 UTC (History)
6 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Walter 2016-11-20 19:35:26 UTC
Current contents of /etc/conf.d/docker

-----
# where the docker daemon output gets piped
#DOCKER_LOGFILE="/var/log/docker.log"

# where docker's pid get stored
#DOCKER_PIDFILE="/run/docker.pid"

# where the docker daemon itself is run from
#DOCKERD_BINARY="/usr/bin/dockerd"

# any other random options you want to pass to docker
DOCKER_OPTS=""
-----

Although all of these are specific to the 'dockerd' program (and not the 'docker' program, which is the client), only one of them has a DOCKERD_ prefix, and the other three have DOCKER_ prefixes.

I would recommend normalizing all of these to DOCKERD_, as well as updating the comments appropriately, ie.
-----
# where the docker daemon output gets piped
#DOCKERD_LOGFILE="/var/log/docker.log"

# where the docker daemon's pid gets stored
#DOCKERD_PIDFILE="/run/docker.pid"

# where the docker daemon itself is run from
#DOCKERD_BINARY="/usr/bin/dockerd"

# any other random options you want to pass to the docker daemon
DOCKERD_OPTS=""
-----