Skip to content

Commit 8e31306

Browse files
committed
fix tmpfs mount definitions for latest molecule-plugins
1 parent 338664f commit 8e31306

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

molecule/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Local installation on a RockyLinux 8.x machine looks like:
4242
Then to run tests, e.g.::
4343

4444
cd ansible-role-openhpc/
45-
MOLECULE_IMAGE=rockylinux:8.8 molecule test --all
45+
MOLECULE_IMAGE=rockylinux:8.9 molecule test --all
4646

4747
During development you may want to:
4848

molecule/test1/molecule.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ platforms:
99
- testohpc_login
1010
command: "/bin/bash -c 'dnf -y install systemd && /sbin/init'" # not in RL9 image
1111
tmpfs:
12-
- /run
13-
- /tmp
12+
/run: rw
13+
/tmp: rw
1414
volumes:
1515
- /sys/fs/cgroup:/sys/fs/cgroup:ro
1616
network: net1
@@ -21,8 +21,8 @@ platforms:
2121
- testohpc_compute
2222
command: "/bin/bash -c 'dnf -y install systemd && /sbin/init'" # not in RL9 image
2323
tmpfs:
24-
- /run
25-
- /tmp
24+
/run: rw
25+
/tmp: rw
2626
volumes:
2727
- /sys/fs/cgroup:/sys/fs/cgroup:ro
2828
network: net1
@@ -33,8 +33,8 @@ platforms:
3333
- testohpc_compute
3434
command: "/bin/bash -c 'dnf -y install systemd && /sbin/init'" # not in RL9 image
3535
tmpfs:
36-
- /run
37-
- /tmp
36+
/run: rw
37+
/tmp: rw
3838
volumes:
3939
- /sys/fs/cgroup:/sys/fs/cgroup:ro
4040
network: net1

0 commit comments

Comments
 (0)