2015-04-23 11:58:57 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-08-24 16:47:09 +00:00
|
|
|
//go:build !pam
|
|
|
|
// +build !pam
|
|
|
|
|
2015-04-23 11:58:57 +00:00
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2020-10-23 10:10:29 +00:00
|
|
|
// Supported is false when built without PAM
|
|
|
|
var Supported = false
|
|
|
|
|
2016-11-27 06:03:59 +00:00
|
|
|
// Auth not supported lack of pam tag
|
2020-02-23 19:52:05 +00:00
|
|
|
func Auth(serviceName, userName, passwd string) (string, error) {
|
|
|
|
return "", errors.New("PAM not supported")
|
2015-04-23 11:58:57 +00:00
|
|
|
}
|