2015-04-23 20:58:57 +09:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2022-11-28 03:20:29 +09:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-04-23 20:58:57 +09:00
|
|
|
|
2021-08-25 01:47:09 +09:00
|
|
|
//go:build !pam
|
|
|
|
|
2015-04-23 20:58:57 +09:00
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2020-10-23 19:10:29 +09:00
|
|
|
// Supported is false when built without PAM
|
|
|
|
var Supported = false
|
|
|
|
|
2016-11-27 15:03:59 +09:00
|
|
|
// Auth not supported lack of pam tag
|
2020-02-24 04:52:05 +09:00
|
|
|
func Auth(serviceName, userName, passwd string) (string, error) {
|
2023-04-12 19:16:45 +09: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 20:58:57 +09:00
|
|
|
}
|