-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [WIP] Fix cookbook lint attributes * [WIP] Fix cookbook lint metadata.rb * [WIP] Fix cookbook lint prooviders * [WIP] Fix cookbook lint recipes * [WIP] Fix cookbook lint resources * Update metadata.rb
- Loading branch information
Showing
6 changed files
with
46 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
default["minio"]["user"] = "minio" | ||
default["minio"]["group"] = "minio" | ||
default["minio"]["port"] = 9000 | ||
default['minio']['user'] = 'minio' | ||
default['minio']['group'] = 'minio' | ||
default['minio']['port'] = 9000 | ||
|
||
#Flags | ||
default["minio"]["registered"] = false | ||
# Flags | ||
default['minio']['registered'] = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
name 'minio' | ||
maintainer 'Alberto Rodríguez' | ||
maintainer_email 'arodriguez@redborder' | ||
license 'AGPLv3' | ||
maintainer 'Eneo Tecnología S.L.' | ||
maintainer_email 'git@redborder.com' | ||
license 'AGPL-3.0' | ||
description 'Installs/Configures Minio' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '0.0.4' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
minio_config "config" do | ||
minio_config 'config' do | ||
action [:add] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
minio_config "config" do | ||
mystring "test" | ||
minio_config 'config' do | ||
mystring 'test' | ||
action :add | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
actions :add, :remove, :register, :deregister | ||
default_action :add | ||
|
||
attribute :user, :kind_of => String, :default => "minio" | ||
attribute :group, :kind_of => String, :default => "minio" | ||
attribute :port, :kind_of => Fixnum, :default => 9000 | ||
attribute :user, kind_of: String, default: 'minio' | ||
attribute :group, kind_of: String, default: 'minio' | ||
attribute :port, kind_of: Integer, default: 9000 | ||
|
||
attribute :ipaddress, :kind_of => String, :default => "127.0.0.1" | ||
attribute :ipaddress, kind_of: String, default: '127.0.0.1' |