forked from chef/omnitruck
-
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.
This applies some fixes which were introduced in [1] that help support community distributions better. Some other fixes include: - Ensure we pull in mixlib-install >= 3.11.23 which includes the patches introduced in [1] - Create dist.rb file for renaming chef to something else and also set the SLES project versions to other names [1] chef/mixlib-install#292 Signed-off-by: Lance Albertson <lance@osuosl.org>
- Loading branch information
Showing
7 changed files
with
36 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module OmnitruckDist | ||
# This class is not fully implemented, depending it is not recommended! | ||
# Client name | ||
CLIENT_NAME = "chef".freeze | ||
# Here we map specific project versions that started building | ||
# native SLES packages. This is used to determine which projects | ||
# need to be remapped to EL before a certain version. | ||
SLES_PROJECT_VERSIONS = { | ||
"automate" => "0.8.5", | ||
"chef" => "12.21.1", | ||
"angrychef" => "12.21.1", | ||
"chef-server" => "12.14.0", | ||
"chefdk" => "1.3.43", | ||
"inspec" => "1.20.0", | ||
"angry-omnibus-toolchain" => "1.1.66", | ||
"omnibus-toolchain" => "1.1.66", | ||
}.freeze | ||
end |