mirror of
https://github.com/SELinuxProject/refpolicy
synced 2025-02-10 00:27:22 +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())
|