You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
499 B
Python
17 lines
499 B
Python
# https://github.com/dw/mitogen/issues/297
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
from ansible.plugins.vars import BaseVarsPlugin
|
|
import os
|
|
|
|
class VarsModule(BaseVarsPlugin):
|
|
def __init__(self, *args):
|
|
super(VarsModule, self).__init__(*args)
|
|
os.environ['EVIL_VARS_PLUGIN'] = 'YIPEEE'
|
|
|
|
def get_vars(self, loader, path, entities, cache=True):
|
|
super(VarsModule, self).get_vars(loader, path, entities)
|
|
return {}
|