File tree 4 files changed +15
-36
lines changed 4 files changed +15
-36
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Release 0.6.6
4
+ - Bugfix. Update install.pp due to false positive on selinux check #60 . Contributed by magarvo
5
+ - Support ArchLinux #61 . Contributed by traylenator
6
+ - Update supported OS list to drop specific versioned releases.
7
+
3
8
## Release 0.6.5
4
9
5
10
- Bugfix for issue #55 , Typo in network manifest. Identified by CyberLine
Original file line number Diff line number Diff line change 9
9
5 . [ Limitations - OS compatibility, etc.] ( #limitations )
10
10
6 . [ Development - Guide for contributing to the module] ( #development )
11
11
12
- ## ** * NOTICE ** *
13
- Version 0.6.5 of the module slightly changes the way the container options are stored by Puppet. This will cause
14
- podman::container resources to detect a state change and re-deploy, interrupting any service running in those containers.
15
-
16
12
## Description
17
13
18
14
Podman enables running standard docker containers without the usual docker daemon. This has some benefits from a security
Original file line number Diff line number Diff line change 40
40
}
41
41
}
42
42
43
- if $:: selinux == true or $facts [' os' ][' selinux' ][' enabled' ] == true {
43
+ if $facts [ ' selinux' ] == true or $facts [' os' ][' selinux' ][' enabled' ] == true {
44
44
selboolean { 'container_manage_cgroup' :
45
45
persistent => true ,
46
46
value => on,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " southalc-podman" ,
3
- "version" : " 0.6.5 " ,
3
+ "version" : " 0.6.6 " ,
4
4
"author" : " Chris Southall" ,
5
5
"summary" : " Manage podman containers with puppet" ,
6
6
"license" : " Apache-2.0" ,
29
29
{
30
30
"operatingsystem" : " Archlinux"
31
31
},
32
-
33
32
{
34
- "operatingsystem" : " CentOS" ,
35
- "operatingsystemrelease" : [
36
- " 7" ,
37
- " 8"
38
- ]
33
+ "operatingsystem" : " CentOS"
39
34
},
40
35
{
41
- "operatingsystem" : " OracleLinux" ,
42
- "operatingsystemrelease" : [
43
- " 7" ,
44
- " 8"
45
- ]
36
+ "operatingsystem" : " Debian"
46
37
},
47
38
{
48
- "operatingsystem" : " RedHat" ,
49
- "operatingsystemrelease" : [
50
- " 7" ,
51
- " 8"
52
- ]
39
+ "operatingsystem" : " OracleLinux"
53
40
},
54
41
{
55
- "operatingsystem" : " Scientific" ,
56
- "operatingsystemrelease" : [
57
- " 7"
58
- ]
42
+ "operatingsystem" : " RedHat"
59
43
},
60
44
{
61
- "operatingsystem" : " Fedora" ,
62
- "operatingsystemrelease" : [
63
- " 29" ,
64
- " 30" ,
65
- " 31" ,
66
- " 32" ,
67
- " 33" ,
68
- " 34" ,
69
- " 35"
70
- ]
45
+ "operatingsystem" : " Fedora"
46
+ },
47
+ {
48
+ "operatingsystem" : " Ubuntu"
71
49
}
72
50
],
73
51
"requirements" : [
You can’t perform that action at this time.
0 commit comments