diff options
author | schweikh <schweikh@FreeBSD.org> | 2004-06-06 11:46:29 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2004-06-06 11:46:29 +0000 |
commit | 91f34482ca182b474992ae5c488e1c4099b921ed (patch) | |
tree | 61f525058713dcef7460f57c8307ffc492c8e1d2 /etc/pam.d | |
parent | 96336d4a475a5eec3779bc057475c59daa691002 (diff) | |
download | FreeBSD-src-91f34482ca182b474992ae5c488e1c4099b921ed.zip FreeBSD-src-91f34482ca182b474992ae5c488e1c4099b921ed.tar.gz |
Removed whitespace at BOF, EOL & EOF.
Diffstat (limited to 'etc/pam.d')
-rw-r--r-- | etc/pam.d/README | 8 | ||||
-rw-r--r-- | etc/pam.d/convert.pl | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/etc/pam.d/README b/etc/pam.d/README index 53a23cb..7b8f958 100644 --- a/etc/pam.d/README +++ b/etc/pam.d/README @@ -20,7 +20,7 @@ Comments are introduced with a hash mark ('#'). Blank lines and lines consisting entirely of comments are ignored. The meanings of the different fields are as follows: - + module-type: auth: prompt for a password to authenticate that the user is who they say they are, and set any credentials. @@ -28,7 +28,7 @@ The meanings of the different fields are as follows: resources, etc. session: housekeeping before and/or after login. password: update authentication tokens. - + control-flag: How libpam handles success or failure of the module. required: success is required; on failure all remaining modules are run, but the request will be denied. @@ -39,7 +39,7 @@ The meanings of the different fields are as follows: binding: success is sufficient; on failure all remaining modules are run, but the request will be denied. optional: ignored unless the other modules return PAM_IGNORE. - + arguments: Module-specific options, plus some generic ones: debug: syslog debug info. no_warn: return no warning messages to the application. @@ -53,7 +53,7 @@ The meanings of the different fields are as follows: use_mapped_pass: convert cleartext password to a crypto key. expose_account: allow printing more info about the user when prompting. - + Note that having a "sufficient" module as the last entry for a particular service and module type may result in surprising behaviour. To get the intended semantics, add a "required" entry listing the diff --git a/etc/pam.d/convert.pl b/etc/pam.d/convert.pl index 6859120..f4c0676 100644 --- a/etc/pam.d/convert.pl +++ b/etc/pam.d/convert.pl @@ -45,7 +45,7 @@ MAIN:{ my $version; my $type; local *FILE; - + while (<>) { chomp(); s/\s*$//; @@ -82,6 +82,6 @@ MAIN:{ close(FILE); warn("$service\n"); } - + exit(0); } |