Puppet debug is turned on via puppet_debug

Do not lose the puppet debug flag.

Change-Id: I697b92714f555e406de7214329c287435f26e0c4
Related-Bug: #1592842
Related-Bug: #1560505
This commit is contained in:
Georgy Kibardin 2016-06-23 12:34:23 +03:00
parent 11200d85d8
commit 668287af1c
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ class Astute::DeploymentEngine::GranularDeployment < Astute::DeploymentEngine
:puppet_modules => task['parameters']['puppet_modules'],
:cwd => task['parameters']['cwd'],
:timeout => task['parameters']['timeout'],
:debug => @puppet_debug
:puppet_debug => @puppet_debug
}
)
end

View File

@ -64,7 +64,7 @@ module Astute
:puppet_modules => @task['parameters']['puppet_modules'],
:cwd => @task['parameters']['cwd'],
:timeout => @task['parameters']['timeout'],
:debug => @task['parameters']['debug']
:puppet_debug => @task['parameters']['debug']
}
)
end
@ -77,4 +77,4 @@ module Astute
end
end
end
end