Blame SOURCES/sudo.conf

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