forked from sous-chefs/git
-
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.
rubocop -a; updating .kitchen.cloud.yml
- Loading branch information
Sean OMeara
committed
Apr 14, 2015
1 parent
cc1ece7
commit 7b9396a
Showing
16 changed files
with
164 additions
and
125 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
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
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
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
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,13 +1,13 @@ | ||
name 'git' | ||
maintainer 'Chef Software, Inc.' | ||
maintainer_email '[email protected]' | ||
license 'Apache 2.0' | ||
description 'Installs git and/or sets up a Git server daemon' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '4.1.0' | ||
recipe 'git', 'Installs git' | ||
recipe 'git::server', 'Sets up a runit_service for git daemon' | ||
recipe 'git::source', 'Installs git from source' | ||
name 'git' | ||
maintainer 'Chef Software, Inc.' | ||
maintainer_email '[email protected]' | ||
license 'Apache 2.0' | ||
description 'Installs git and/or sets up a Git server daemon' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '4.1.0' | ||
recipe 'git', 'Installs git' | ||
recipe 'git::server', 'Sets up a runit_service for git daemon' | ||
recipe 'git::source', 'Installs git from source' | ||
|
||
supports 'amazon' | ||
supports 'arch' | ||
|
@@ -32,17 +32,17 @@ | |
depends 'yum-epel' | ||
|
||
attribute 'git/server/base_path', | ||
:display_name => 'Git Daemon Base Path', | ||
:description => 'A directory containing git repositories to be ' \ | ||
display_name: 'Git Daemon Base Path', | ||
description: 'A directory containing git repositories to be ' \ | ||
'exposed by the git-daemon', | ||
:default => '/srv/git', | ||
:recipes => ['git::server'] | ||
default: '/srv/git', | ||
recipes: ['git::server'] | ||
|
||
attribute 'git/server/export_all', | ||
:display_name => 'Git Daemon Export All', | ||
:description => 'Adds the --export-all option to the git-daemon ' \ | ||
display_name: 'Git Daemon Export All', | ||
description: 'Adds the --export-all option to the git-daemon ' \ | ||
'parameters, making all repositories publicly readable even if ' \ | ||
'they lack the \'git-daemon-export-ok\' file', | ||
:choice => %w{ true false }, | ||
:default => 'true', | ||
:recipes => ['git::server'] | ||
choice: %w(true false), | ||
default: 'true', | ||
recipes: ['git::server'] |
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
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
Oops, something went wrong.