mirror of https://github.com/ansible/ansible.git
Fix references to old egg-info directory.
parent
d8d7a30ea6
commit
7323d5dd0d
@ -0,0 +1 @@
|
||||
shippable/posix/group1
|
@ -0,0 +1,11 @@
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import pkg_resources
|
||||
|
||||
from ansible.plugins.lookup import LookupBase
|
||||
|
||||
|
||||
class LookupModule(LookupBase):
|
||||
def run(self, terms, variables, **kwargs):
|
||||
return ['ok']
|
@ -0,0 +1,3 @@
|
||||
- name: Make sure pkg_resources can be imported by plugins
|
||||
debug:
|
||||
msg: "{{ lookup('import_pkg_resources') }}"
|
Loading…
Reference in New Issue