1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-13 08:59:08 +03:00
Files
samba-mirror/source4/scripting/python/samba_external/missing.py

13 lines
180 B
Python
Executable File

#!/usr/bin/python
# work out what python external libraries we need to install
list = []
try:
import dns.resolver
except:
list.append("dnspython")
print ' '.join(list)