Skip to content

Commit 34b0529

Browse files
committed
Update rsync to 699650bf7e7339e1653f83143637595a0029aa51
699650bf7e7339e1653f83143637595a0029aa51 Merge pull request #62 from jweisner/array_convert 35833faf66e20eb30d9ea6f4f7e285ebf52af7d0 Merge branch 'array_convert' of github.com:jweisner/puppetlabs-rsync into array_convert d9c362562ae025f67060cb3ddbfa26e1ddc42149 Replace .to_a with Kernel#Array 72e8543c630ae7a7290717d2cb229703542495e5 Merge pull request #63 from jweisner/rspec_310 259c90aba9fe7fb34c790c0dd0ce1f63ddf7b36f Pin rspec version to 3.1.0 (rspec/rspec-core#1864) 214d3ce7c5526b49d6c224a813f92817ab915f03 Replace .to_a with Kernel#Array
1 parent 08fbaff commit 34b0529

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Puppetfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ mod 'remote',
155155
:git => 'https://github.com/paramite/puppet-remote.git'
156156

157157
mod 'rsync',
158-
:commit => '67a3475e141d672caa5fe552d8cf59cd0bd0137e',
158+
:commit => '699650bf7e7339e1653f83143637595a0029aa51',
159159
:git => 'https://github.com/puppetlabs/puppetlabs-rsync.git'
160160

161161
mod 'sahara',

rsync/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
source "https://rubygems.org"
22

3+
gem 'rspec', '~> 3.1.0'
34
gem 'puppetlabs_spec_helper'
45
if puppetversion = ENV['PUPPET_GEM_VERSION']
56
gem 'puppet', puppetversion, :require => false

rsync/templates/module.erb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ comment = <%= @comment %>
2525
secrets file = <%= @secrets_file %>
2626
<% end -%>
2727
<% if @auth_users -%>
28-
auth users = <%= @auth_users.to_a.join(', ')%>
28+
auth users = <%= Array(@auth_users).join(', ')%>
2929
<% end -%>
3030
<% if @hosts_allow -%>
31-
hosts allow = <%= @hosts_allow.to_a.join(' ')%>
31+
hosts allow = <%= Array(@hosts_allow).join(' ')%>
3232
<% end -%>
3333
<% if @hosts_deny -%>
34-
hosts deny = <%= @hosts_deny.to_a.join(' ')%>
34+
hosts deny = <%= Array(@hosts_deny).join(' ')%>
3535
<% end -%>
3636
<% if @exclude -%>
37-
exclude = <%= @exclude.to_a.join(' ')%>
37+
exclude = <%= Array(@exclude).join(' ')%>
3838
<% end -%>
3939
<% if @transfer_logging -%>
4040
transfer logging = <%= @transfer_logging %>
@@ -43,5 +43,5 @@ transfer logging = <%= @transfer_logging %>
4343
log format = <%= @log_format %>
4444
<% end -%>
4545
<% if @refuse_options -%>
46-
refuse options = <%= @refuse_options.to_a.join(' ')%>
46+
refuse options = <%= Array(@refuse_options).join(' ')%>
4747
<% end -%>

0 commit comments

Comments
 (0)