File tree 8 files changed +28
-22
lines changed
8 files changed +28
-22
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ about: Create a report to help me improve
4
4
5
5
---
6
6
7
- ## Describe the bug
7
+ # Describe the bug
8
8
9
9
A clear and concise description of what the bug is.
10
10
@@ -13,7 +13,6 @@ A clear and concise description of what the bug is.
13
13
Please paste the playbook you are using. (Consider ` requirements.yml ` and
14
14
optionally the command you've invoked.)
15
15
16
-
17
16
``` yaml
18
17
---
19
18
YOUR PLAYBOOK HERE
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ about: Suggest an idea for this project
4
4
5
5
---
6
6
7
- ## Proposed feature
7
+ # Proposed feature
8
8
9
9
A clear and concise description of what you want to happen.
10
10
Original file line number Diff line number Diff line change 40
40
- image : " debian"
41
41
tag : " bullseye"
42
42
- image : " fedora"
43
- tag : " 37 "
43
+ tag : " 38 "
44
44
- image : " fedora"
45
45
tag : " latest"
46
+ - image : " fedora"
47
+ tag : " rawhide"
46
48
- image : " ubuntu"
47
49
tag : " latest"
48
50
- image : " ubuntu"
@@ -54,12 +56,12 @@ jobs:
54
56
uses : actions/checkout@v3
55
57
with :
56
58
path : " ${{ github.repository }}"
57
- - name : disable apparmor for mysql
58
- run : sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/
59
- - name : parse apparmor for mysql
60
- run : sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
59
+ # - name: disable apparmor for mysql
60
+ # run: sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/
61
+ # - name: parse apparmor for mysql
62
+ # run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
61
63
- name : molecule
62
- uses :
robertdebock/[email protected] .0
64
+ uses :
robertdebock/[email protected] .1
63
65
with :
64
66
image : ${{ matrix.config.image }}
65
67
tag : ${{ matrix.config.tag }}
Original file line number Diff line number Diff line change 1
1
---
2
- image : " robertdebock/github-action-molecule:6.0.0 "
2
+ image : " robertdebock/github-action-molecule:6.0.1 "
3
3
4
4
variables :
5
5
PY_COLORS : 1
@@ -23,9 +23,11 @@ molecule:
23
23
- image : " debian"
24
24
tag : " bullseye"
25
25
- image : " fedora"
26
- tag : " 37 "
26
+ tag : " 38 "
27
27
- image : " fedora"
28
28
tag : " latest"
29
+ - image : " fedora"
30
+ tag : " rawhide"
29
31
- image : " ubuntu"
30
32
tag : " latest"
31
33
- image : " ubuntu"
Original file line number Diff line number Diff line change 11
11
rev : v1.32.0
12
12
hooks :
13
13
- id : yamllint
14
- args : [-c=.yamllint]
14
+ args :
15
+ - -c=.yamllint
15
16
16
17
- repo : https://github.com/robertdebock/pre-commit
17
18
rev : v1.5.2
Original file line number Diff line number Diff line change 1
- # [ dhcpd] ( #dhcpd )
1
+ # Ansible role [ dhcpd] ( #dhcpd )
2
2
3
3
Install and configure dhcpd on your system.
4
4
@@ -105,11 +105,11 @@ This role has been tested on these [container images](https://hub.docker.com/u/r
105
105
106
106
|container|tags|
107
107
|---------|----|
108
- |[Alpine](https://hub.docker.com/repository/docker/ robertdebock/alpine/general )|all|
109
- |[EL](https://hub.docker.com/repository/docker/ robertdebock/enterpriselinux/general )|8, 9|
110
- |[Debian](https://hub.docker.com/repository/docker/ robertdebock/debian/general )|all|
111
- |[Fedora](https://hub.docker.com/repository/docker/ robertdebock/fedora/general )|all|
112
- |[Ubuntu](https://hub.docker.com/repository/docker/ robertdebock/ubuntu/general )|all|
108
+ |[Alpine](https://hub.docker.com/r/ robertdebock/alpine)|all|
109
+ |[EL](https://hub.docker.com/r/ robertdebock/enterpriselinux)|8, 9|
110
+ |[Debian](https://hub.docker.com/r/ robertdebock/debian)|all|
111
+ |[Fedora](https://hub.docker.com/r/ robertdebock/fedora/)|all|
112
+ |[Ubuntu](https://hub.docker.com/r/ robertdebock/ubuntu)|all|
113
113
114
114
The minimum version of Ansible required is 2.12, tests have been done to :
115
115
Original file line number Diff line number Diff line change 1
- # Pinning ansible-compat version due to [bug](https://github.com/ansible-community/molecule/issues/3903)
2
- ansible-compat == 3.0.2
3
- molecule == 5.*
1
+ ansible-compat == 4.*
2
+ molecule == 6.*
4
3
molecule-plugins [docker ] == 23.*
5
4
ansible-lint == 6.*
6
5
paramiko == 3.*
Original file line number Diff line number Diff line change 3
3
#
4
4
[tox]
5
5
minversion = 4.2.4
6
- envlist = py3-ansible{6,7,8}
6
+ # Ansible 6 and 7 are disabled, causing issues with Fedora:
7
+ # https://github.com/ansible/ansible/issues/81199#event-9773321055
8
+ # envlist = py3-ansible{6,7,8}
9
+ envlist = py3-ansible{8}
7
10
8
11
skipsdist = true
9
12
You can’t perform that action at this time.
0 commit comments