mirror of
https://github.com/SELinuxProject/refpolicy
synced 2025-03-23 19:46:37 +00:00
6 lines
142 B
Python
6 lines
142 B
Python
#!/usr/bin/python
|
|
from __future__ import print_function
|
|
import selinux
|
|
if selinux.is_selinux_enabled():
|
|
print(selinux.security_policyvers())
|