2015-07-14 13:47:20 +02:00
|
|
|
// +build !pam
|
2015-04-23 13:58:57 +02: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.
|
|
|
|
|
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2020-10-23 12:10:29 +02:00
|
|
|
// Supported is false when built without PAM
|
|
|
|
var Supported = false
|
|
|
|
|
2016-11-27 07:03:59 +01:00
|
|
|
// Auth not supported lack of pam tag
|
2020-02-23 20:52:05 +01:00
|
|
|
func Auth(serviceName, userName, passwd string) (string, error) {
|
|
|
|
return "", errors.New("PAM not supported")
|
2015-04-23 13:58:57 +02:00
|
|
|
}
|