2015-04-23 07:58:57 -04:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-04-23 07:58:57 -04:00
|
|
|
|
2021-08-24 12:47:09 -04:00
|
|
|
//go:build !pam
|
|
|
|
|
2015-04-23 07:58:57 -04:00
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2020-10-23 06:10:29 -04:00
|
|
|
// Supported is false when built without PAM
|
|
|
|
var Supported = false
|
|
|
|
|
2016-11-27 01:03:59 -05:00
|
|
|
// Auth not supported lack of pam tag
|
2020-02-23 14:52:05 -05:00
|
|
|
func Auth(serviceName, userName, passwd string) (string, error) {
|
2023-04-12 06:16:45 -04:00
|
|
|
// bypass the lint on callers: SA4023: this comparison is always true (staticcheck)
|
|
|
|
if !Supported {
|
|
|
|
return "", errors.New("PAM not supported")
|
|
|
|
}
|
|
|
|
return "", nil
|
2015-04-23 07:58:57 -04:00
|
|
|
}
|