081267dc43
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/tog-pegasus.git#6e556193473e062db027bdb29c0ffc2cbfb5e7c4
16 lines
330 B
Bash
16 lines
330 B
Bash
#!/bin/bash
|
|
|
|
# simple wrapper for Pegasus's cimprovagt
|
|
# which allows providers to have separate
|
|
# SELinux policy
|
|
# see README.RedHat.Security for more info
|
|
|
|
provcimprovagt=/usr/libexec/pegasus/"$5"-cimprovagt
|
|
|
|
if [[ -x "$provcimprovagt" ]]
|
|
then
|
|
"$provcimprovagt" "$@"
|
|
else
|
|
/usr/libexec/pegasus/cimprovagt "$@"
|
|
fi
|