summaryrefslogtreecommitdiff
path: root/app-emulation/podman/files/podman.initd
diff options
context:
space:
mode:
Diffstat (limited to 'app-emulation/podman/files/podman.initd')
-rw-r--r--app-emulation/podman/files/podman.initd17
1 files changed, 17 insertions, 0 deletions
diff --git a/app-emulation/podman/files/podman.initd b/app-emulation/podman/files/podman.initd
new file mode 100644
index 000000000000..b590be16a1ba
--- /dev/null
+++ b/app-emulation/podman/files/podman.initd
@@ -0,0 +1,17 @@
+#!/sbin/openrc-run
+# Copyright 2015-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+description="Podman Remote API Service"
+LOG_PATH="/var/log/${RC_SVCNAME}"
+RUN_PATH="/run/${RC_SVCNAME}"
+pidfile="${RUN_PATH}/${RC_SVCNAME}.pid"
+command="/usr/bin/podman"
+command_args="--log-level debug varlink -t 0 unix:/run/podman/io.podman"
+command_background="true"
+start_stop_daemon_args="--stdout ${LOG_PATH}/${RC_SVCNAME}.log --stderr ${LOG_PATH}/${RC_SVCNAME}.log"
+
+start() {
+ checkpath -d "${RUN_PATH}" "${LOG_PATH}"
+ default_start
+}