[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: allowing in.tftpd to read/write files?
- From: Chuck Anderson <cra WPI EDU>
- To: fedora-selinux-list redhat com
- Subject: Re: allowing in.tftpd to read/write files?
- Date: Fri, 19 Oct 2007 14:57:23 -0400
On Fri, Oct 19, 2007 at 02:42:33PM -0400, Chuck Anderson wrote:
> How do I allow tftpd to write files?
I ended up creating the following local policy. Should this type of
thing be put into the standard policy package?
#cat /root/tftp.te
module tftp 1.0;
require {
type public_content_t;
type tftpd_t;
type public_content_rw_t;
class dir search;
class file { read write getattr };
}
#============= tftpd_t ==============
allow tftpd_t public_content_rw_t:file { write read getattr };
allow tftpd_t public_content_t:dir search;
allow tftpd_t public_content_t:file { read getattr };
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]