1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-02 01:15:48 +00:00
gitea/modules/auth/pam/pam_stub.go

23 lines
482 B
Go
Raw Normal View History

2015-04-23 11:58:57 +00:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2015-04-23 11:58:57 +00:00
//go:build !pam
2015-04-23 11:58:57 +00:00
package pam
import (
"errors"
)
// 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
func Auth(serviceName, userName, passwd string) (string, error) {
// 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 11:58:57 +00:00
}