mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
make su promt AIX compatible
$ su suuser date suusers's Password:
This commit is contained in:
@@ -53,7 +53,7 @@ SU_PROMPT_LOCALIZATIONS = [
|
||||
'密碼',
|
||||
]
|
||||
|
||||
SU_PROMPT_LOCALIZATIONS_RE = re.compile("|".join([x + ' ?: ?' for x in SU_PROMPT_LOCALIZATIONS]), flags=re.IGNORECASE)
|
||||
SU_PROMPT_LOCALIZATIONS_RE = re.compile("|".join(['(\w+\'s )?' + x + ' ?: ?' for x in SU_PROMPT_LOCALIZATIONS]), flags=re.IGNORECASE)
|
||||
|
||||
def check_su_prompt(data):
|
||||
return bool(SU_PROMPT_LOCALIZATIONS_RE.match(data))
|
||||
|
||||
Reference in New Issue
Block a user