Skip to content

Commit

Permalink
Merge pull request #27 from jordiprats/master
Browse files Browse the repository at this point in the history
centos 5
  • Loading branch information
jordiprats authored Mar 25, 2020
2 parents 16f4c79 + 4b676f8 commit b0cce7f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.1.15

* added support for **CentOS 5**

## 0.1.14

* added static grains for saltstak::minion
Expand Down
14 changes: 14 additions & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@

case $::operatingsystemrelease
{
/^5.*$/:
{
$api_dependencies=undef
$saltstack_repo_url_key_source=undef
$saltstack_repo_url = {
'latest' => 'https://repo.saltstack.com/yum/redhat/salt-repo-latest-1.el5.noarch.rpm',
'2015.5' => 'https://repo.saltstack.com/yum/redhat/salt-repo-2015.5-1.el5.noarch.rpm',
'2015.8' => 'https://repo.saltstack.com/yum/redhat/salt-repo-2015.8-3.el5.noarch.rpm',
'2016.11' => 'https://repo.saltstack.com/yum/redhat/salt-repo-2016.11-1.el5.noarch.rpm',
'2016.3' => 'https://repo.saltstack.com/yum/redhat/salt-repo-2016.3-1.el5.noarch.rpm',
}

$windows_dependencies=undef
}
/^6.*$/:
{
$api_dependencies=undef
Expand Down
12 changes: 6 additions & 6 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eyp-saltstack",
"version": "0.1.14",
"version": "0.1.15",
"author": "eyp",
"summary": "saltstack - minion, master, api, cloud, syndic and ssh setup and configuration",
"license": "Apache-2.0",
Expand All @@ -17,23 +17,23 @@
"operatingsystem_support": [
{
"operatingsystem": "RedHat",
"operatingsystemrelease": [ "6", "7" ]
"operatingsystemrelease": [ "5", "6", "7" ]
},
{
"operatingsystem": "CentOS",
"operatingsystemrelease": [ "6", "7" ]
"operatingsystemrelease": [ "5", "6", "7" ]
},
{
"operatingsystem": "Scientific",
"operatingsystemrelease": [ "6", "7" ]
"operatingsystemrelease": [ "5", "6", "7" ]
},
{
"operatingsystem": "OEL",
"operatingsystemrelease": [ "6", "7" ]
"operatingsystemrelease": [ "5", "6", "7" ]
},
{
"operatingsystem": "OracleLinux",
"operatingsystemrelease": [ "6", "7" ]
"operatingsystemrelease": [ "5", "6", "7" ]
},
{
"operatingsystem": "Ubuntu",
Expand Down

0 comments on commit b0cce7f

Please sign in to comment.