Add back the crypt import

This commit is contained in:
MKLeb 2023-08-01 09:27:45 -04:00 committed by Pedro Algarvio
parent 7e9dc8ca63
commit b960cd4f2a

View file

@ -28,6 +28,12 @@ from saltfactories.cli import call, key, salt
from saltfactories.daemons import api, master, minion
from saltfactories.utils import cli_scripts
try:
import crypt
HAS_CRYPT = True
except ImportError:
HAS_CRYPT = False
try:
import pwd