aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-03-27 14:57:02 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-03-27 14:57:02 -0300
commit4f250cde2ab2bde6b2dd75aa362783b5489f4dfc (patch)
tree6c4b8388ac177a845950ab2004f493ad8f03bca1
parent42660cfda15598bc736a8aced9f9b2251e71928e (diff)
downloadpuppet-php-4f250cde2ab2bde6b2dd75aa362783b5489f4dfc.tar.gz
puppet-php-4f250cde2ab2bde6b2dd75aa362783b5489f4dfc.tar.bz2
Removes syslog from disable_functions
-rw-r--r--manifests/hardened.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/hardened.pp b/manifests/hardened.pp
index 6439b94..5340dd7 100644
--- a/manifests/hardened.pp
+++ b/manifests/hardened.pp
@@ -2,7 +2,7 @@ class php::hardened {
php::config {
'allow_url_fopen' : value => 'Off';
'allow_url_include' : value => 'Off';
- 'disable_functions' : value => 'phpinfo, system, exec, shell_exec, passthru, proc_get_status, proc_open, popen, proc_close, proc_nice, proc_terminate, pcntl_exec, proc_open, show_source, dl, symlink, syslog, system_exec';
+ 'disable_functions' : value => 'phpinfo, system, exec, shell_exec, passthru, proc_get_status, proc_open, popen, proc_close, proc_nice, proc_terminate, pcntl_exec, proc_open, show_source, dl, symlink, system_exec';
#value => 'disable_functions = phpinfo, system, exec, shell_exec, passthru, proc_get_status, proc_open, popen, proc_close, proc_nice, proc_terminate, pcntl_exec, proc_open, curl_init, parse_ini_file, show_source, dl, symlink, syslog, mail, system_exec',
}
}