golden hour
/opt/saltstack/salt/lib/python3.10/site-packages/salt/utils/validate
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
96 B
Del
OK
__pycache__
-
Del
OK
net.py
2.21 KB
Del
OK
path.py
1.78 KB
Del
OK
user.py
433 B
Del
OK
Edit: user.py
""" Various user validation utilities """ import logging import re log = logging.getLogger(__name__) VALID_USERNAME = re.compile(r"[a-z_][a-z0-9_-]*[$]?", re.IGNORECASE) def valid_username(user): """ Validates a username based on the guidelines in `useradd(8)` """ if not isinstance(user, str): return False if len(user) > 32: return False return VALID_USERNAME.match(user) is not None
Save