From ffdd11e7aeed179868618dd7b4666e5e149962b0 Mon Sep 17 00:00:00 2001 From: Dmitry Shulyak Date: Fri, 17 Jul 2015 16:17:14 +0300 Subject: [PATCH] Add lost handler for puppet --- solar/solar/core/handlers/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/solar/solar/core/handlers/__init__.py b/solar/solar/core/handlers/__init__.py index c0f5c825..79a864d0 100644 --- a/solar/solar/core/handlers/__init__.py +++ b/solar/solar/core/handlers/__init__.py @@ -9,6 +9,7 @@ from solar.core.handlers.shell import Shell HANDLERS = {'ansible': AnsibleTemplate, 'ansible_playbook': AnsiblePlaybook, 'shell': Shell, + 'puppet': Puppet, 'none': Empty} def get(handler_name):