make su promt AIX compatible
$ su suuser date suusers's Password:
This commit is contained in:
parent
7c86db3187
commit
0a902a5afd
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue