mirror of
https://github.com/samba-team/samba.git
synced 2025-04-29 14:50:26 +03:00
13 lines
180 B
Python
Executable File
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)
|