* add -selinux variant which depends on libselinux
* init script for background service
* updated configurations
* maintainer change as requested
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit abce423851
)
14 lines
291 B
Bash
Executable file
14 lines
291 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
USE_PROCD=1
|
|
NAME=podman
|
|
PROG=/usr/bin/podman
|
|
|
|
start_service() {
|
|
[ -d /run/podman ] || mkdir -p /run/podman
|
|
procd_open_instance "podman"
|
|
procd_set_param command "$PROG" system service --time=0
|
|
procd_append_param command $command
|
|
procd_close_instance
|
|
}
|