Skip to content

Commit

Permalink
v2.1.1
Browse files Browse the repository at this point in the history
* ensure salt-minion package is installed before attempting to start service (#1, @whorka)
  • Loading branch information
JoelKle committed Dec 2, 2021
1 parent c535870 commit 7314b37
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
#### Fixes


## 2.1.1 (December 02, 2021)

#### Features

* ensure salt-minion package is installed before attempting to start service (#1, @whorka)


## 2.1.0 (November 09, 2020)

#### Features
Expand Down
3 changes: 3 additions & 0 deletions manifests/master.pp
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@
Class['salt::master::install']
-> Class['salt::master::config']

Class['salt::master::install']
-> Class['salt::master::service']

Salt::Master::Config::Create <| |>
~> Service["${salt::master::service_name} service"]

Expand Down
3 changes: 3 additions & 0 deletions manifests/minion.pp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@
Class['salt::minion::install']
-> Class['salt::minion::config']

Class['salt::minion::install']
-> Class['salt::minion::service']

Salt::Minion::Config::Create <| |>
~> Service["${salt::minion::service_name} service"]

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "joelkle-salt",
"version": "2.1.0",
"version": "2.1.1",
"author": "JoelKle",
"summary": "Installs, configures, and manages the SaltStack ( salt-minion / salt-master / salt-api / salt-syndic / salt-pepper ).",
"license": "Apache-2.0",
Expand Down

0 comments on commit 7314b37

Please sign in to comment.