Move noexec path into sudo.conf now that sudo itself handles noexec.

Currently can be configured in sudoers too but is now undocumented
and will be removed in a future release.
This commit is contained in:
Todd C. Miller
2011-03-10 16:12:33 -05:00
parent dc8012265f
commit 7debf44742
4 changed files with 16 additions and 13 deletions

View File

@@ -139,7 +139,6 @@ struct command_details {
const char *chroot;
const char *selinux_role;
const char *selinux_type;
const char *noexec_file;
char **argv;
char **envp;
};
@@ -163,6 +162,7 @@ void cleanup(int);
char *tgetpass(const char *, int, int);
int tty_present(void);
extern const char *askpass_path;
extern const char *noexec_path;
/* zero_bytes.c */
void zero_bytes(volatile void *, size_t);