File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 9
9
.idea /
10
10
dist
11
11
/pkg
12
- /spec /fixtures
12
+ # Read everything in fixtures
13
+ /spec /fixtures /*
14
+ # Un-ignore hieradata
15
+ ! /spec /fixtures /hieradata /*
16
+ # Except this one, which is auto-generated
17
+ /spec /fixtures /hieradata /hiera.yaml
13
18
/spec /rp_env
14
19
/.rspec_system
15
20
/.vagrant
Original file line number Diff line number Diff line change
1
+ * Fri Jun 03 2022 Chris Tessmer <chris.tessmer@onyxpoint.com> - 0.2.0
2
+ - Update from camptocamp/systemd to puppet/systemd
3
+
1
4
* Wed Sep 22 2021 Trevor Vaughan <tvaughan@onyxpoint.com> - 0.1.2
2
5
- Ensure that the instances can load multiple CA certificates
3
6
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " simp-ds389" ,
3
- "version" : " 0.1.2 " ,
3
+ "version" : " 0.2.0 " ,
4
4
"author" : " SIMP Team" ,
5
5
"summary" : " Management of 389 Directory Server" ,
6
6
"license" : " Apache-2.0" ,
9
9
"issues_url" : " https://simp-project.atlassian.net" ,
10
10
"dependencies" : [
11
11
{
12
- "name" : " camptocamp /systemd" ,
13
- "version_requirement" : " >= 2.7 .0 < 3 .0.0"
12
+ "name" : " puppet /systemd" ,
13
+ "version_requirement" : " >= 3.0 .0 < 4 .0.0"
14
14
},
15
15
{
16
16
"name" : " simp/simplib" ,
Original file line number Diff line number Diff line change 17
17
18
18
context "with #{ os } " do
19
19
it { is_expected . to compile . with_all_deps }
20
- it { is_expected . to contain_package ( '389-ds-base' ) . with_ensure ( 'present' ) }
20
+ # Work around for https://github.com/puppetlabs/puppetlabs-stdlib/pull/1196
21
+ it { is_expected . to contain_package ( '389-ds-base' ) . with_ensure ( /\A (present|installed)\Z / ) }
21
22
it { is_expected . not_to contain_package ( '389-admin' ) }
22
23
it { is_expected . not_to contain_package ( '389-admin-console' ) }
23
24
it { is_expected . not_to contain_package ( '389-ds-console' ) }
You can’t perform that action at this time.
0 commit comments