lib: abstract out selinux call

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2018-01-22 16:52:31 -05:00
parent 8ea79e755f
commit e53b0a055a
Signed by: vbatts
GPG key ID: 10937E57733F1362
3 changed files with 17 additions and 2 deletions

View file

@ -0,0 +1,7 @@
// +build !linux
package lib
func selinuxEnabled() bool {
return false
}