2015-04-23 17:28:57 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2015-04-23 17:28:57 +05:30
|
|
|
|
2021-08-24 22:17:09 +05:30
|
|
|
//go:build !pam
|
|
|
|
|
2015-04-23 17:28:57 +05:30
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2020-10-23 15:40:29 +05:30
|
|
|
// Supported is false when built without PAM
|
|
|
|
var Supported = false
|
|
|
|
|
2016-11-27 11:33:59 +05:30
|
|
|
// Auth not supported lack of pam tag
|
2020-02-24 01:22:05 +05:30
|
|
|
func Auth(serviceName, userName, passwd string) (string, error) {
|
|
|
|
return "", errors.New("PAM not supported")
|
2015-04-23 17:28:57 +05:30
|
|
|
}
|