mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 03:31:52 +08:00

podman uses catatonit now for container init, so new package for catatonit is required. Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
8 lines
117 B
Bash
Executable File
8 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"catatonit")
|
|
test $(/usr/bin/catatonit -V | grep '^tini version' | wc -l) -gt 0
|
|
;;
|
|
esac
|