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