Skip to content

Commit d0f5807

Browse files
committed
add support for ubuntu noble
1 parent 0b0233d commit d0f5807

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ In this example the Ansible role will uninstall the runner service and unregiste
263263
2. Install Molecule and its Docker driver with pip:
264264

265265
```bash
266-
pip install molecule[docker]
266+
pip install "molecule-plugins[docker]"
267267
```
268268
Sure, here's a basic example of how you might structure a README to explain how to test the `monolithprojects.github_actions_runner` Ansible role with Molecule:
269269

tasks/install_deps.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,18 @@
111111
become: true
112112
when: (ansible_facts.distribution == "Ubuntu" and ansible_facts.distribution_major_version == "22")
113113

114+
- name: Install dependencies on Ubuntu Noble systems
115+
ansible.builtin.package:
116+
pkg:
117+
- acl
118+
- liblttng-ust1
119+
- libkrb5-3
120+
- zlib1g
121+
state: present
122+
update_cache: true
123+
become: true
124+
when: (ansible_facts.distribution == "Ubuntu" and ansible_facts.distribution_major_version == "24")
125+
114126
- name: Install dependencies on RHEL/CentOS/Fedora systems
115127
ansible.builtin.package:
116128
name:

0 commit comments

Comments
 (0)