You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
301 B
12 lines
301 B
10 months ago
|
#!/bin/bash
|
||
|
# Author: Fabian Arrotin
|
||
|
|
||
|
t_Log "Running $0 - install package selinux policycoreutils tools"
|
||
|
if [ "$centos_ver" = "6" ] ; then
|
||
|
t_InstallPackage policycoreutils-python
|
||
|
elif [ "$centos_ver" -ge 8 ] ; then
|
||
|
t_InstallPackage python3-libselinux
|
||
|
else
|
||
|
t_InstallPackage libselinux-python
|
||
|
fi
|