Fix indent

This commit is contained in:
Guilhem Lettron 2014-03-14 15:40:59 +01:00
parent 5040229bec
commit 44e536f752
4 changed files with 11 additions and 11 deletions

View File

@ -24,24 +24,24 @@ when 'debian'
packages = %w(
ceph
ceph-common
)
)
if node['ceph']['install_debug']
packages_dbg = %w(
ceph-dbg
ceph-common-dbg
)
)
packages += packages_dbg
end
when 'rhel', 'fedora'
packages = %w(
ceph
)
)
if node['ceph']['install_debug']
packages_dbg = %w(
ceph-debug
)
)
packages += packages_dbg
end
end

View File

@ -23,18 +23,18 @@ case node['platform_family']
when 'debian'
packages = %w(
radosgw
)
)
if node['ceph']['install_debug']
packages_dbg = %w(
radosgw-dbg
)
)
packages += packages_dbg
end
when 'rhel', 'fedora', 'suse'
packages = %w(
ceph-radosgw
)
)
end
packages.each do |pkg|

View File

@ -22,12 +22,12 @@ when 'debian', 'suse'
packages = %w(
apache2
libapache2-mod-fastcgi
)
)
when 'rhel', 'fedora'
packages = %w(
httpd
mod_fastcgi
)
)
end
packages.each do |pkg|

View File

@ -23,11 +23,11 @@ case node['platform_family']
when 'debian'
packages = %w(
tgt
)
)
when 'rhel', 'fedora'
packages = %w(
scsi-target-utils
)
)
end
packages.each do |pkg|