Showing with 26 additions and 3 deletions.
  1. +14 −2 CHANGELOG.md
  2. +1 −0 manifests/install.pp
  3. +1 −1 metadata.json
  4. +10 −0 spec/acceptance/basic_spec.rb
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# Changelog

## [5.1.0](https://github.com/theforeman/puppet-pulpcore/tree/5.1.0) (2022-01-25)
## [5.2.1](https://github.com/theforeman/puppet-pulpcore/tree/5.2.1) (2022-02-03)

[Full Changelog](https://github.com/theforeman/puppet-pulpcore/compare/5.1.0...5.1.0)
[Full Changelog](https://github.com/theforeman/puppet-pulpcore/compare/5.2.0...5.2.1)

**Merged pull requests:**

- Fixes [\#34379](https://projects.theforeman.org/issues/34379) - Create the Pulp group as a system group [\#244](https://github.com/theforeman/puppet-pulpcore/pull/244) ([ekohl](https://github.com/ekohl))

## [5.2.0](https://github.com/theforeman/puppet-pulpcore/tree/5.2.0) (2022-01-25)

[Full Changelog](https://github.com/theforeman/puppet-pulpcore/compare/5.1.0...5.2.0)

**Implemented enhancements:**

Expand Down Expand Up @@ -92,6 +100,10 @@

- Fixes [\#32622](https://projects.theforeman.org/issues/32622): Include StdEnvVars, ExportCertData SSL options in Apache [\#193](https://github.com/theforeman/puppet-pulpcore/pull/193) ([ehelms](https://github.com/ehelms))

## [2.2.3](https://github.com/theforeman/puppet-pulpcore/tree/2.2.3) (2021-05-19)

[Full Changelog](https://github.com/theforeman/puppet-pulpcore/compare/3.3.0...2.2.3)

## [3.3.0](https://github.com/theforeman/puppet-pulpcore/tree/3.3.0) (2021-04-21)

[Full Changelog](https://github.com/theforeman/puppet-pulpcore/compare/3.2.1...3.3.0)
Expand Down
1 change: 1 addition & 0 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@

group { $pulpcore::group:
ensure => present,
system => true,
}
}
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "theforeman-pulpcore",
"version": "5.2.0",
"version": "5.2.1",
"author": "theforeman",
"summary": "Installs next generation Pulp server",
"license": "GPL-3.0-or-later",
Expand Down
10 changes: 10 additions & 0 deletions spec/acceptance/basic_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@
end
end

describe user('pulp') do
it { is_expected.to exist }
its(:uid) { is_expected.to be < 1000 }
end

describe group('pulp') do
it { is_expected.to exist }
its(:gid) { is_expected.to be < 1000 }
end

describe service('httpd') do
it { is_expected.to be_enabled }
it { is_expected.to be_running }
Expand Down