Skip to content

Commit

Permalink
Allow to configure releases and shared folder names via resource attr…
Browse files Browse the repository at this point in the history
…ibutes
  • Loading branch information
vgolubev committed Apr 20, 2015
1 parent 91f85d8 commit bda3d42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
attribute :artifact_location, :kind_of => String
attribute :artifact_checksum, :kind_of => String
attribute :deploy_to, :kind_of => String, :required => true
attribute :shared_name, :kind_of => String, default => 'shared'
attribute :releases_name, :kind_of => String, default => 'releases'
attribute :shared_name, :kind_of => String, :default => 'shared'
attribute :releases_name, :kind_of => String, :default => 'releases'
attribute :download_retries, :kind_of => Integer, :default => 1
attribute :version, :kind_of => String, :required => true
attribute :owner, :kind_of => String, :required => true, :regex => Chef::Config[:user_valid_regex]
Expand Down

0 comments on commit bda3d42

Please sign in to comment.