getEnforce method
Implementation
Future<SELinuxType> getEnforce({bool debug = false}) async {
return exec(['getenforce'], debug: debug).then((result) {
final value = result.stdout.toString().trim();
return SELinuxType.values.firstWhere((e) => e.name.toLowerCase() == value.toLowerCase());
});
}