diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-11-10 13:25:33 -0800 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-11-10 13:33:13 -0800 |
commit | bff574337518003f1f7bfcbb98e92373f0580a58 (patch) | |
tree | 7d29d4ce9d0c97b3bd789c514bdce7d7f4d2d513 /app-emulation/containerd/files | |
parent | app-emulation/containerd: update metadata.xml (diff) | |
download | gentoo-bff574337518003f1f7bfcbb98e92373f0580a58.tar.gz gentoo-bff574337518003f1f7bfcbb98e92373f0580a58.tar.bz2 gentoo-bff574337518003f1f7bfcbb98e92373f0580a58.zip |
app-emulation/containerd: drop old
Bug: https://bugs.gentoo.org/749579
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'app-emulation/containerd/files')
-rw-r--r-- | app-emulation/containerd/files/containerd.initd | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app-emulation/containerd/files/containerd.initd b/app-emulation/containerd/files/containerd.initd deleted file mode 100644 index bedf000cad5b..000000000000 --- a/app-emulation/containerd/files/containerd.initd +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -description="Containerd container runtime" -command="/usr/bin/containerd" -pidfile="${pidfile:-/run/${RC_SVCNAME}.pid}" -start_stop_daemon_args="--background --make-pidfile --stderr /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log --stdout /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log" - -start_pre() { - checkpath -m 0750 -d /var/log/${RC_SVCNAME} - - ulimit -n 1048576 - - # Having non-zero limits causes performance problems due to accounting overhead - # in the kernel. We recommend using cgroups to do container-local accounting. - ulimit -u unlimited - - return 0 -} - -start_post() { - ewaitfile 5 /run/containerd/containerd.sock -} |