+## Make the specified type usable for log files in a filesystem. +## This will also make the type usable for files, making +## calls to files_type() redundant. Failure to use this interface +## for a log file type may result in problems with log +## rotation, log analysis, and log monitoring programs. +##
+##+## Related interfaces: +##
+##+## Example usage with a domain that can create +## and append to a private log file stored in the +## general directories (e.g., /var/log): +##
+##+## type mylogfile_t; +## logging_log_file(mylogfile_t) +## allow mydomain_t mylogfile_t:file { create_file_perms append_file_perms }; +## logging_log_filetrans(mydomain_t, mylogfile_t, file) +##
+##+## Allow the specified domain to create an object +## in the general system log directories (e.g., /var/log) +## with a private type. Typically this is used for creating +## private log files in /var/log with the private type instead +## of the general system log type. To accomplish this goal, +## either the program must be SELinux-aware, or use this interface. +##
+##