Use double quotes for $pip_command

Fix syntax error with pip install command.

Change-Id: Ib42c6a4fbc5cef8cf937ee36227136e6de7152ed
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-07-26 13:12:36 -04:00
parent 07e39e7bdc
commit c65c6f84f4
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class nodepool (
}
exec { 'install_nodepool' :
command => '${pip_command} install -U /opt/nodepool',
command => "${pip_command} install -U /opt/nodepool",
path => '/usr/local/bin:/usr/bin:/bin/',
refreshonly => true,
subscribe => Vcsrepo['/opt/nodepool'],