Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhem committed Mar 14, 2014
1 parent 5040229 commit 44e536f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@
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
Expand Down
6 changes: 3 additions & 3 deletions recipes/radosgw.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@
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|
Expand Down
4 changes: 2 additions & 2 deletions recipes/radosgw_apache2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
packages = %w(
apache2
libapache2-mod-fastcgi
)
)
when 'rhel', 'fedora'
packages = %w(
httpd
mod_fastcgi
)
)
end

packages.each do |pkg|
Expand Down
4 changes: 2 additions & 2 deletions recipes/tgt.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
when 'debian'
packages = %w(
tgt
)
)
when 'rhel', 'fedora'
packages = %w(
scsi-target-utils
)
)
end

packages.each do |pkg|
Expand Down

0 comments on commit 44e536f

Please sign in to comment.