From 95c41c8973852c7e91a78d30d746c5c3515dc3b3 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sun, 6 Sep 2009 16:30:50 +0000 Subject: [PATCH] Move fast_glob description to where it belongs in sorted order --- sudoers.pod | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sudoers.pod b/sudoers.pod index 8ff4b5eae..ebcc7f5f9 100644 --- a/sudoers.pod +++ b/sudoers.pod @@ -607,6 +607,18 @@ run by root with the I<-V> option. If the I option is set, its value will be used for the C environment variable. This flag is I by default. +=item fast_glob + +Normally, B uses the L function to do shell-style +globbing when matching pathnames. However, since it accesses the +file system, L can take a long time to complete for some +patterns, especially when the pattern references a network file +system that is mounted on demand (automounted). The I +option causes B to use the L function, which does +not access the file system to do its matching. The disadvantage +of I is that it is unable to match relative pathnames +such as F<./ls> or F<../bin/ls>. This flag is I by default. + =item fqdn Set this flag if you want to put fully qualified hostnames in the @@ -799,18 +811,6 @@ shell is determined by the C environment variable if it is set, falling back on the shell listed in the invoking user's /etc/passwd entry if not). This flag is I by default. -=item fast_glob - -Normally, B uses the L function to do shell-style -globbing when matching pathnames. However, since it accesses the -file system, L can take a long time to complete for some -patterns, especially when the pattern references a network file -system that is mounted on demand (automounted). The I -option causes B to use the L function, which does -not access the file system to do its matching. The disadvantage -of I is that it is unable to match relative pathnames -such as F<./ls> or F<../bin/ls>. This flag is I by default. - =item stay_setuid Normally, when B executes a command the real and effective -- 2.40.0