Merge pull request #38058 from rallytime/remove-init-db-dep

Remove initdb dependency in postgres module
This commit is contained in:
Mike Place 2016-12-03 21:19:01 -07:00 committed by GitHub
commit c9933670f9

View file

@ -113,7 +113,7 @@ def __virtual__():
Only load this module if the psql bin exist.
initdb bin might also be used, but its presence will be detected on runtime.
'''
utils = ['psql', 'initdb']
utils = ['psql']
if not HAS_CSV:
return False
for util in utils: