9 lines
202 B
Bash
9 lines
202 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Ensure that new process maintain this SELinux label
|
||
|
PID=$$
|
||
|
LABEL=`tr -d '\000' < /proc/$PID/attr/current`
|
||
|
printf %s $LABEL > /proc/self/attr/exec
|
||
|
|
||
|
exec /usr/bin/crio --log-level=$LOG_LEVEL
|