Changeset 205
- Timestamp:
- 07/08/08 11:09:43
(3 months ago)
- Author:
- jmowery
- Message:
more changes from update to new version
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r153 |
r205 |
|
| | 1 | auditadm_r:auditadm_t |
|---|
| | 2 | secadm_r:secadm_t |
|---|
| 1 | 3 | sysadm_r:sysadm_t |
|---|
| 2 | 4 | staff_r:staff_t |
|---|
| r153 |
r205 |
|
| | 1 | auditadm_r:auditadm_t |
|---|
| | 2 | secadm_r:secadm_t |
|---|
| 1 | 3 | sysadm_r:sysadm_t |
|---|
| 2 | 4 | staff_r:staff_t |
|---|
| r153 |
r205 |
|
| 94 | 94 | |
|---|
| 95 | 95 | .PP |
|---|
| | 96 | httpd can be configured to turn on sending email. By default http is not allowed to send mail. This is a security feature, since it would prevent a vulnerabiltiy in http from causing a spam attack. I certain situations, you may want http modules to send mail. You can turn on the httpd_send_mail boolean. |
|---|
| | 97 | |
|---|
| | 98 | .EX |
|---|
| | 99 | setsebool -P httpd_can_sendmail 1 |
|---|
| | 100 | .PP |
|---|
| 96 | 101 | httpd can be configured to turn off internal scripting (PHP). PHP and other |
|---|
| 97 | 102 | loadable modules run under the same context as httpd. Therefore several policy rules allow httpd greater access to the system then is needed if you only use external cgi scripts. |
|---|
| r153 |
r205 |
|
| 466 | 466 | else: |
|---|
| 467 | 467 | paramopt = "No" |
|---|
| | 468 | if args.getAttribute("unused") == "true": |
|---|
| | 469 | paramunused = "Yes" |
|---|
| | 470 | else: |
|---|
| | 471 | paramunused = "No" |
|---|
| 468 | 472 | parameter = { "name" : paramname, |
|---|
| 469 | 473 | "desc" : paramdesc, |
|---|
| 470 | | "optional" : paramopt } |
|---|
| | 474 | "optional" : paramopt, |
|---|
| | 475 | "unused" : paramunused } |
|---|
| 471 | 476 | interface_parameters.append(parameter) |
|---|
| 472 | 477 | interfaces.append( { "interface_name" : interface_name, |
|---|
| … | … | |
| 507 | 512 | else: |
|---|
| 508 | 513 | paramopt = "No" |
|---|
| | 514 | if args.getAttribute("unused") == "true": |
|---|
| | 515 | paramunused = "Yes" |
|---|
| | 516 | else: |
|---|
| | 517 | paramunused = "No" |
|---|
| 509 | 518 | parameter = { "name" : paramname, |
|---|
| 510 | 519 | "desc" : paramdesc, |
|---|
| 511 | | "optional" : paramopt } |
|---|
| | 520 | "optional" : paramopt, |
|---|
| | 521 | "unused": paramunused } |
|---|
| 512 | 522 | template_parameters.append(parameter) |
|---|
| 513 | 523 | templates.append( { "template_name" : template_name, |
|---|
| r153 |
r205 |
|
| 75 | 75 | %config(noreplace) %{_sysconfdir}/selinux/*/contexts/removable_context |
|---|
| 76 | 76 | %config(noreplace) %{_sysconfdir}/selinux/*/contexts/userhelper_context |
|---|
| | 77 | %config(noreplace) %{_sysconfdir}/selinux/*/contexts/x_contexts |
|---|
| 77 | 78 | %dir %{_sysconfdir}/selinux/*/contexts/files |
|---|
| 78 | 79 | #%ghost %config %{_sysconfdir}/selinux/*/contexts/files/file_contexts |
|---|
| … | … | |
| 118 | 119 | %config(noreplace) %{_sysconfdir}/selinux/%{polname1}/contexts/removable_context |
|---|
| 119 | 120 | %config(noreplace) %{_sysconfdir}/selinux/%{polname1}/contexts/userhelper_context |
|---|
| | 121 | %config(noreplace) %{_sysconfdir}/selinux/%{polname1}/contexts/x_contexts |
|---|
| 120 | 122 | %dir %{_sysconfdir}/selinux/%{polname1}/contexts/files |
|---|
| 121 | 123 | #%ghost %config %{_sysconfdir}/selinux/%{polname1}/contexts/files/file_contexts |
|---|
| … | … | |
| 163 | 165 | %config(noreplace) %{_sysconfdir}/selinux/%{polname2}/contexts/removable_context |
|---|
| 164 | 166 | %config(noreplace) %{_sysconfdir}/selinux/%{polname2}/contexts/userhelper_context |
|---|
| | 167 | %config(noreplace) %{_sysconfdir}/selinux/%{polname2}/contexts/x_contexts |
|---|
| 165 | 168 | %dir %{_sysconfdir}/selinux/%{polname2}/contexts/files |
|---|
| 166 | 169 | #%ghost %config %{_sysconfdir}/selinux/%{polname2}/contexts/files/file_contexts |
|---|
Download in other formats:
* Generating other formats may take time.