From 3645700dbcd9832ad721ac4ed066acbb20c7b74f Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 6 Mar 2014 15:19:07 +0100 Subject: [PATCH] fix lint issues Signed-off-by: Emilien Macchi --- manifests/compute/hypervisor.pp | 2 +- manifests/network.pp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manifests/compute/hypervisor.pp b/manifests/compute/hypervisor.pp index 12329acc..f0d7e90b 100644 --- a/manifests/compute/hypervisor.pp +++ b/manifests/compute/hypervisor.pp @@ -145,7 +145,7 @@ Host * } class { 'nova::compute::libvirt': - libvirt_type => $libvirt_type, + libvirt_type => $libvirt_type, # Needed to support migration but we still use Spice: vncserver_listen => '0.0.0.0', migration_support => true, diff --git a/manifests/network.pp b/manifests/network.pp index 6042e2a3..dc4d8974 100644 --- a/manifests/network.pp +++ b/manifests/network.pp @@ -125,11 +125,11 @@ class cloud::network( } # TODO(EmilienM), Temporary, it's a bug in Debian packages. GH#342 - file { "/var/lib/neutron": - ensure => "directory", - owner => "neutron", - group => "neutron", - mode => 755, + file { '/var/lib/neutron': + ensure => 'directory', + owner => 'neutron', + group => 'neutron', + mode => '0755' } }