Add archlinux platform
This commit is contained in:
parent
a75f5bc391
commit
0030b9bfcb
|
@ -15,6 +15,9 @@ platforms:
|
|||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
tmpfs:
|
||||
- /run
|
||||
- /tmp
|
||||
|
||||
- name: systemd-centos-latest
|
||||
image: centos/systemd:latest
|
||||
|
@ -22,20 +25,33 @@ platforms:
|
|||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
tmpfs:
|
||||
- /run
|
||||
- /tmp
|
||||
|
||||
- name: systemd-debian-latest
|
||||
image: jrei/systemd-debian:latest
|
||||
command: /sbin/init
|
||||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
# - name: systemd-debian-latest
|
||||
# image: jrei/systemd-debian:latest
|
||||
# command: /sbin/init
|
||||
# privileged: true
|
||||
# volumes:
|
||||
# - /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
|
||||
- name: systemd-fedora-latest
|
||||
image: jrei/systemd-fedora:latest
|
||||
# - name: systemd-fedora-latest
|
||||
# image: jrei/systemd-fedora:latest
|
||||
# command: /usr/sbin/init
|
||||
# privileged: true
|
||||
# volumes:
|
||||
# - /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
|
||||
- name: archlinux
|
||||
image: archlinux:latest
|
||||
command: /usr/sbin/init
|
||||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
tmpfs:
|
||||
- /run
|
||||
- /tmp
|
||||
|
||||
provisioner:
|
||||
name: ansible
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
- name: prepare
|
||||
hosts: archlinux
|
||||
package:
|
||||
name: python
|
||||
update_cache: true
|
Loading…
Reference in New Issue