Fix typo in pip install

This commit is contained in:
Matthew Treinish 2017-04-04 12:11:43 -04:00
parent f2c142406b
commit 24a4c4a0d3
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ class mqtt_statsd(
){
include ::pip
vcsrepo { $source_dir :
vcsrepo { "$source_dir" :
ensure => latest,
provider => git,
revision => $git_revision,
@ -22,7 +22,7 @@ class mqtt_statsd(
}
exec { 'install_mqtt_statsd' :
command => "pip install -U $soure_dir",
command => "pip install -U $source_dir",
path => '/usr/local/bin:/usr/bin:/bin/',
refreshonly => true,
subscribe => Vcsrepo["$source_dir"],