Skip to content

Commit dc12230

Browse files
committed
release 0.6.6
1 parent 7a262ed commit dc12230

File tree

4 files changed

+15
-36
lines changed

4 files changed

+15
-36
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

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+
38
## Release 0.6.5
49

510
- Bugfix for issue #55, Typo in network manifest. Identified by CyberLine

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
5. [Limitations - OS compatibility, etc.](#limitations)
1010
6. [Development - Guide for contributing to the module](#development)
1111

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-
1612
## Description
1713

1814
Podman enables running standard docker containers without the usual docker daemon. This has some benefits from a security

manifests/install.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
}
4141
}
4242

43-
if $::selinux == true or $facts['os']['selinux']['enabled'] == true {
43+
if $facts['selinux'] == true or $facts['os']['selinux']['enabled'] == true {
4444
selboolean { 'container_manage_cgroup':
4545
persistent => true,
4646
value => on,

metadata.json

Lines changed: 9 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "southalc-podman",
3-
"version": "0.6.5",
3+
"version": "0.6.6",
44
"author": "Chris Southall",
55
"summary": "Manage podman containers with puppet",
66
"license": "Apache-2.0",
@@ -29,45 +29,23 @@
2929
{
3030
"operatingsystem": "Archlinux"
3131
},
32-
3332
{
34-
"operatingsystem": "CentOS",
35-
"operatingsystemrelease": [
36-
"7",
37-
"8"
38-
]
33+
"operatingsystem": "CentOS"
3934
},
4035
{
41-
"operatingsystem": "OracleLinux",
42-
"operatingsystemrelease": [
43-
"7",
44-
"8"
45-
]
36+
"operatingsystem": "Debian"
4637
},
4738
{
48-
"operatingsystem": "RedHat",
49-
"operatingsystemrelease": [
50-
"7",
51-
"8"
52-
]
39+
"operatingsystem": "OracleLinux"
5340
},
5441
{
55-
"operatingsystem": "Scientific",
56-
"operatingsystemrelease": [
57-
"7"
58-
]
42+
"operatingsystem": "RedHat"
5943
},
6044
{
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"
7149
}
7250
],
7351
"requirements": [

0 commit comments

Comments
 (0)