Skip to content

Commit cf5e6e0

Browse files
committed
Change underscores in hostnames to hyphens
Underscores in hostnames are disallowed according to RFC 1035: https://www.rfc-editor.org/rfc/rfc1035.html Our use of underscores is currently breaking our Kali-based Ansible role testing: https://github.com/cisagov/ansible-role-orchestrator/runs/4644951540?check_suite_focus=true#step:6:266
1 parent e257202 commit cf5e6e0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

molecule/default/molecule-with-systemd.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,70 +15,70 @@ lint: |
1515
ansible-lint
1616
flake8
1717
platforms:
18-
- name: amazonlinux2_systemd
18+
- name: amazonlinux2-systemd
1919
image: geerlingguy/docker-amazonlinux2-ansible:latest
2020
privileged: yes
2121
volumes:
2222
- /sys/fs/cgroup:/sys/fs/cgroup:ro
2323
command: /lib/systemd/systemd
2424
pre_build_image: yes
25-
- name: debian9_systemd
25+
- name: debian9-systemd
2626
image: geerlingguy/docker-debian9-ansible:latest
2727
privileged: yes
2828
volumes:
2929
- /sys/fs/cgroup:/sys/fs/cgroup:ro
3030
command: /lib/systemd/systemd
3131
pre_build_image: yes
32-
- name: debian10_systemd
32+
- name: debian10-systemd
3333
image: geerlingguy/docker-debian10-ansible:latest
3434
privileged: yes
3535
volumes:
3636
- /sys/fs/cgroup:/sys/fs/cgroup:ro
3737
command: /lib/systemd/systemd
3838
pre_build_image: yes
39-
- name: debian11_systemd
39+
- name: debian11-systemd
4040
image: geerlingguy/docker-debian11-ansible:latest
4141
privileged: yes
4242
volumes:
4343
- /sys/fs/cgroup:/sys/fs/cgroup:ro
4444
command: /lib/systemd/systemd
4545
pre_build_image: yes
46-
- name: kali_systemd
46+
- name: kali-systemd
4747
image: cisagov/docker-kali-ansible:latest
4848
privileged: yes
4949
volumes:
5050
- /sys/fs/cgroup:/sys/fs/cgroup:ro
5151
command: /lib/systemd/systemd
5252
pre_build_image: yes
53-
- name: fedora32_systemd
53+
- name: fedora32-systemd
5454
image: geerlingguy/docker-fedora32-ansible:latest
5555
privileged: yes
5656
volumes:
5757
- /sys/fs/cgroup:/sys/fs/cgroup:ro
5858
command: /lib/systemd/systemd
5959
pre_build_image: yes
60-
- name: fedora33_systemd
60+
- name: fedora33-systemd
6161
image: geerlingguy/docker-fedora33-ansible:latest
6262
privileged: yes
6363
volumes:
6464
- /sys/fs/cgroup:/sys/fs/cgroup:ro
6565
command: /lib/systemd/systemd
6666
pre_build_image: yes
67-
- name: fedora34_systemd
67+
- name: fedora34-systemd
6868
image: geerlingguy/docker-fedora34-ansible:latest
6969
privileged: yes
7070
volumes:
7171
- /sys/fs/cgroup:/sys/fs/cgroup:ro
7272
command: /lib/systemd/systemd
7373
pre_build_image: yes
74-
- name: ubuntu_18_systemd
74+
- name: ubuntu-18-systemd
7575
image: geerlingguy/docker-ubuntu1804-ansible:latest
7676
privileged: yes
7777
volumes:
7878
- /sys/fs/cgroup:/sys/fs/cgroup:ro
7979
command: /lib/systemd/systemd
8080
pre_build_image: yes
81-
- name: ubuntu_20_systemd
81+
- name: ubuntu-20-systemd
8282
image: geerlingguy/docker-ubuntu2004-ansible:latest
8383
privileged: yes
8484
volumes:

0 commit comments

Comments
 (0)