Advertisement
Guest User

Untitled

a guest
Jun 29th, 2011
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. policy_module(couchdb, 1.0.0)
  2.  
  3. ########################################
  4. #
  5. # Declarations
  6. #
  7.  
  8. permissive couchdb_t;
  9.  
  10. type couchdb_t;
  11. type couchdb_exec_t;
  12. init_daemon_domain(couchdb_t, couchdb_exec_t)
  13.  
  14. type couchdb_initrc_exec_t;
  15. init_script_file(couchdb_initrc_exec_t)
  16.  
  17. type couchdb_etc_t;
  18. files_config_file(couchdb_etc_t)
  19.  
  20. type couchdb_var_lib_t;
  21. files_type(couchdb_var_lib_t)
  22.  
  23. type couchdb_var_log_t;
  24. logging_log_file(couchdb_var_log_t)
  25.  
  26. type couchdb_var_run_t;
  27. files_pid_file(couchdb_var_run_t)
  28.  
  29. ########################################
  30. #
  31. # Local policy
  32. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement