mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
12 lines
235 B
Python
12 lines
235 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
An "Always Approved" eauth interface to test against, not intended for
|
|
production use
|
|
"""
|
|
|
|
|
|
def auth(username, password): # pylint: disable=unused-argument
|
|
"""
|
|
Authenticate!
|
|
"""
|
|
return True
|