Merge pull request #507 from jhoekx/convention-library-path

Add ./library to module search path.
This commit is contained in:
Michael DeHaan 2012-06-25 12:20:56 -07:00
commit 8468e2255b

View file

@ -114,6 +114,8 @@ class PlayBook(object):
self.basedir = os.path.dirname(playbook)
self.playbook = utils.parse_yaml_from_file(playbook)
self.module_path = self.module_path + os.pathsep + os.path.join(self.basedir, "library")
# *****************************************************
def run(self):