source: selinux/set_booleans.sh @ 78

Last change on this file since 78 was 28, checked in by presbrey, 17 years ago
some SELinux module code
  • Property svn:executable set to *
File size: 708 bytes
Line 
1#!/bin/bash
2
3setsebool -P allow_kerberos=1 \
4        allow_httpd_anon_write=1 \
5        allow_httpd_staff_script_anon_write=1 \
6        allow_httpd_sys_script_anon_write=1 \
7        allow_httpd_sysadm_script_anon_write=1 \
8        allow_httpd_user_script_anon_write=1 \
9        allow_java_execstack=1 \
10        allow_user_mysql_connect=1 \
11        cron_can_relabel=1 \
12        httpd_builtin_scripting=1 \
13        httpd_can_network_connect=1 \
14        httpd_can_network_connect_db=1 \
15        httpd_can_network_relay=1 \
16        httpd_enable_cgi=1 \
17        httpd_enable_homedirs=1 \
18        httpd_ssi_exec=1 \
19        httpd_tty_comm=1 \
20        nfs_export_all_ro=1 \
21        nfs_export_all_rw=1 \
22        ssh_sysadm_login=1 \
23        staff_read_sysadm_file=1 \
24        use_nfs_home_dirs=1 \
25        use_samba_home_dirs=1 \
26        user_ping=1 \
27        user_rw_noexattrfile=1
Note: See TracBrowser for help on using the repository browser.