diff options
author | John Olheiser <john.olheiser@gmail.com> | 2020-10-23 05:10:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 11:10:29 +0100 |
commit | 21d621301ef6862ebf59a6ef84fb34028832be4f (patch) | |
tree | 2102851a9dbddbf9ef11b389b3b2c2517e7b2959 /modules/auth/pam | |
parent | 9912a11b333950bebb90318183ad9ceb505301c4 (diff) | |
download | gitea-21d621301ef6862ebf59a6ef84fb34028832be4f.tar.gz gitea-21d621301ef6862ebf59a6ef84fb34028832be4f.zip |
Remove PAM from auth dropdown when unavailable (#13276)
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Diffstat (limited to 'modules/auth/pam')
-rw-r--r-- | modules/auth/pam/pam.go | 3 | ||||
-rw-r--r-- | modules/auth/pam/pam_stub.go | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/auth/pam/pam.go b/modules/auth/pam/pam.go index ca299b08ba..f21602c6b5 100644 --- a/modules/auth/pam/pam.go +++ b/modules/auth/pam/pam.go @@ -12,6 +12,9 @@ import ( "github.com/msteinert/pam" ) +// Supported is true when built with PAM +var Supported = true + // Auth pam auth service func Auth(serviceName, userName, passwd string) (string, error) { t, err := pam.StartFunc(serviceName, userName, func(s pam.Style, msg string) (string, error) { diff --git a/modules/auth/pam/pam_stub.go b/modules/auth/pam/pam_stub.go index 604799ca97..02d8da3c57 100644 --- a/modules/auth/pam/pam_stub.go +++ b/modules/auth/pam/pam_stub.go @@ -10,6 +10,9 @@ import ( "errors" ) +// Supported is false when built without PAM +var Supported = false + // Auth not supported lack of pam tag func Auth(serviceName, userName, passwd string) (string, error) { return "", errors.New("PAM not supported") |