Blame SOURCES/sudo-1.8.6p3-sudo.conf

1b092f
#
1b092f
# Default /etc/sudo.conf file
1b092f
#
1b092f
# Format:
1b092f
#   Plugin plugin_name plugin_path plugin_options ...
1b092f
#   Path askpass /path/to/askpass
1b092f
#   Path noexec /path/to/sudo_noexec.so
1b092f
#   Debug sudo /var/log/sudo_debug all@warn
1b092f
#   Set disable_coredump true
1b092f
#
1b092f
# Sudo plugins:
1b092f
#
1b092f
# The plugin_path is relative to ${prefix}/libexec unless fully qualified.
1b092f
# The plugin_name corresponds to a global symbol in the plugin
1b092f
#   that contains the plugin interface structure.
1b092f
# The plugin_options are optional.
1b092f
#
1b092f
# The sudoers plugin is used by default if no Plugin lines are present.
1b092f
Plugin sudoers_policy sudoers.so
1b092f
Plugin sudoers_io sudoers.so
1b092f
1b092f
#
1b092f
# Sudo askpass:
1b092f
#
1b092f
# An askpass helper program may be specified to provide a graphical
1b092f
# password prompt for "sudo -A" support.  Sudo does not ship with its
1b092f
# own passpass program but can use the OpenSSH askpass.
1b092f
#
1b092f
# Use the OpenSSH askpass
1b092f
#Path askpass /usr/X11R6/bin/ssh-askpass
1b092f
#
1b092f
# Use the Gnome OpenSSH askpass
1b092f
#Path askpass /usr/libexec/openssh/gnome-ssh-askpass
1b092f
1b092f
#
1b092f
# Sudo noexec:
1b092f
#
1b092f
# Path to a shared library containing dummy versions of the execv(),
1b092f
# execve() and fexecve() library functions that just return an error.
1b092f
# This is used to implement the "noexec" functionality on systems that
1b092f
# support C<LD_PRELOAD> or its equivalent.
1b092f
# The compiled-in value is usually sufficient and should only be changed
1b092f
# if you rename or move the sudo_noexec.so file.
1b092f
#
1b092f
#Path noexec /usr/libexec/sudo_noexec.so
1b092f
1b092f
#
1b092f
# Core dumps:
1b092f
#
1b092f
# By default, sudo disables core dumps while it is executing (they
1b092f
# are re-enabled for the command that is run).
1b092f
# To aid in debugging sudo problems, you may wish to enable core
1b092f
# dumps by setting "disable_coredump" to false.
1b092f
#
1b092f
# Set to false here so as not to interfere with /proc/sys/fs/suid_dumpable
1b092f
#
1b092f
Set disable_coredump false