Skip to content

Instantly share code, notes, and snippets.

@bdwyertech
Last active January 4, 2016 00:58
Show Gist options
  • Save bdwyertech/6f39d8dfdffa2c3f72ca to your computer and use it in GitHub Desktop.
Save bdwyertech/6f39d8dfdffa2c3f72ca to your computer and use it in GitHub Desktop.
VMware Tools SELinux Policy
module bdwyertech-vmwaretools 1.0;
require {
type unconfined_t;
type lib_t;
type unconfined_service_t;
class process transition;
class file entrypoint;
}
#============= unconfined_service_t ==============
allow unconfined_service_t unconfined_t:process transition;
#============= unconfined_t ==============
allow unconfined_t lib_t:file entrypoint;
@bdwyertech
Copy link
Author

This seems to be required at the moment to update VMware Tools on CentOS 7.2 guests

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment