Re: sudo dumping core on recent current
"Todd C. Miller" <[email protected]>
| Newsgroups | gmane.os.netbsd.current |
|---|---|
| Message-ID | <[email protected]> |
Sudo will not dump core by default, you will need to add a line like the following to /usr/local/etc/sudo.conf (or wherever PKG_SYSCONFDIR is set to): Set disable_coredump false However, you may just want to enable sudo debug logs like so: Debug sudo /var/log/sudo_debug all@debug Debug sudoers.so /var/log/sudoers_debug all@debug The resulting log files should show where in sudo (or sudoers) the crash occurs. - todd