From 8ad60aa90616742dce8565503cd3dea486dd56cb Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 18 Nov 2014 10:36:36 -0500 Subject: [PATCH] Fix subunit-gearman-worker.py path This commit fixes the path for the gearman-worker script so it can actually find the file. The script is located in the subunit2sql module and not the log_processor module. Change-Id: Ie3228d33ed3c8bdf50b6b2bdc46770fb38742b69 --- modules/subunit2sql/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/subunit2sql/manifests/init.pp b/modules/subunit2sql/manifests/init.pp index c0a78f49eb..f344736e7c 100644 --- a/modules/subunit2sql/manifests/init.pp +++ b/modules/subunit2sql/manifests/init.pp @@ -88,7 +88,7 @@ class subunit2sql ( owner => 'root', group => 'root', mode => '0755', - source => 'puppet:///modules/log_processor/subunit-gearman-worker.py', + source => 'puppet:///modules/subunit2sql/subunit-gearman-worker.py', require => [ Package['python-daemon'], Package['python-zmq'],