Merge pull request #36803 from gtmanfred/2016.3

do not load libvirt pillar if certtool is unavailable
This commit is contained in:
Mike Place 2016-10-06 20:15:14 +09:00 committed by GitHub
commit b75130be2d

View File

@ -15,6 +15,10 @@ import subprocess
import salt.utils
def __virtual__():
return salt.utils.which('certtool') is not None
def ext_pillar(minion_id,
pillar, # pylint: disable=W0613
command): # pylint: disable=W0613