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