version 1.1, 2012/02/21 16:23:02
|
version 1.1.1.2, 2012/05/29 12:26:49
|
Line 2
|
Line 2
|
# Sample /etc/sudo.conf file |
# Sample /etc/sudo.conf file |
# |
# |
# Format: |
# Format: |
# Plugin plugin_name plugin_path | # Plugin plugin_name plugin_path plugin_options ... |
# Path askpass /path/to/askpass |
# Path askpass /path/to/askpass |
# Path noexec /path/to/noexec.so | # Path noexec /path/to/sudo_noexec.so |
| # Debug sudo /var/log/sudo_debug all@warn |
| # Set disable_coredump true |
# |
# |
# Sudo plugins: |
# Sudo plugins: |
# |
# |
# The plugin_path is relative to ${prefix}/libexec unless fully qualified. |
# The plugin_path is relative to ${prefix}/libexec unless fully qualified. |
# The plugin_name corresponds to a global symbol in the plugin |
# The plugin_name corresponds to a global symbol in the plugin |
# that contains the plugin interface structure. |
# that contains the plugin interface structure. |
|
# The plugin_options are optional. |
# |
# |
# The sudoers plugin is used by default if no Plugin lines are present. |
# The sudoers plugin is used by default if no Plugin lines are present. |
Plugin sudoers_policy sudoers.so |
Plugin sudoers_policy sudoers.so |
Line 40 Plugin sudoers_io sudoers.so
|
Line 43 Plugin sudoers_io sudoers.so
|
# if you rename or move the sudo_noexec.so file. |
# if you rename or move the sudo_noexec.so file. |
# |
# |
#Path noexec /usr/libexec/sudo_noexec.so |
#Path noexec /usr/libexec/sudo_noexec.so |
|
|
|
# |
|
# Core dumps: |
|
# |
|
# By default, sudo disables core dumps while it is executing (they |
|
# are re-enabled for the command that is run). |
|
# To aid in debugging sudo problems, you may wish to enable core |
|
# dumps by setting "disable_coredump" to false. |
|
# |
|
#Set disable_coredump false |