mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-08 04:41:38 +00:00
27 lines
822 B
Plaintext
Executable File
27 lines
822 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
command="${DOCKER_BINARY:-/usr/bin/docker}"
|
|
pidfile="${DOCKER_PIDFILE:-/run/${RC_SVCNAME}.pid}"
|
|
command_args="daemon -p \"${pidfile}\" ${DOCKER_OPTS}"
|
|
DOCKER_LOGFILE="${DOCKER_LOGFILE:-/var/log/${RC_SVCNAME}.log}"
|
|
start_stop_daemon_args="--background \
|
|
--stderr \"${DOCKER_LOGFILE}\" --stdout \"${DOCKER_LOGFILE}\""
|
|
|
|
grsecdir=/proc/sys/kernel/grsecurity
|
|
|
|
start_pre() {
|
|
checkpath -f -m 0644 -o root:docker "$DOCKER_LOGFILE"
|
|
for i in $disable_grsec; do
|
|
if [ -e "$grsecdir/$i" ]; then
|
|
einfo " Disabling $i"
|
|
echo 0 > "$grsecdir/$i"
|
|
fi
|
|
done
|
|
|
|
ulimit -n 1048576
|
|
|
|
return 0
|
|
}
|