-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
specified yum cookbook version requirement in metadata and adjusted v…
…ersion number
- Loading branch information
1 parent
c2b94e7
commit db6bb62
Showing
2 changed files
with
4 additions
and
3 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,4 +1,4 @@ | ||
## 0.2.3 | ||
## 0.3.0 | ||
|
||
* Updated default recipe to support yum cookbook version 3.x. | ||
|
||
|
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 |
---|---|---|
|
@@ -3,14 +3,15 @@ | |
maintainer_email "[email protected]" | ||
license "Apache 2.0" | ||
description "Installs/Configures Shibboleth Service Provider" | ||
version "0.2.3" | ||
version "0.3.0" | ||
recipe "shibboleth-sp", "Installs and enables base Shibboleth Service Provider." | ||
recipe "shibboleth-sp::apache", "Base recipe and Apache handling." | ||
recipe "shibboleth-sp::iis", "Base recipe and IIS handling." | ||
recipe "shibboleth-sp::simple", "Base recipe and simple attribute-driven configuration." | ||
recipe "shibboleth-sp::sp_cert_key", "Recipe to configure sp cert and key using databags or node attributes." | ||
depends "yum", ">= 3.0.0" | ||
|
||
%w{ apache2 windows yum }.each do |d| | ||
%w{ apache2 windows }.each do |d| | ||
depends d | ||
end | ||
|
||
|