* Fixed caddy Containerfile version error
* Added qemu-kvm, libvirt, cockpit-machines, etc * Enabled libvirtd service
This commit is contained in:
parent
e71fef338a
commit
0a3e693a08
@ -6,8 +6,8 @@ WORKDIR /app
|
|||||||
|
|
||||||
RUN microdnf update -y \
|
RUN microdnf update -y \
|
||||||
&& microdnf install -y wget tar gzip nss-tools \
|
&& microdnf install -y wget tar gzip nss-tools \
|
||||||
&& wget https://github.com/caddyserver/caddy/releases/download/v2.7.6/caddy_${VERSION}_linux_amd64.tar.gz \
|
&& wget https://github.com/caddyserver/caddy/releases/download/v${VERSION}/caddy_${VERSION}_linux_amd64.tar.gz \
|
||||||
&& wget https://github.com/caddyserver/caddy/releases/download/v2.7.6/caddy_${VERSION}_checksums.txt \
|
&& wget https://github.com/caddyserver/caddy/releases/download/v${VERSION}/caddy_${VERSION}_checksums.txt \
|
||||||
&& sha512sum --ignore-missing --check caddy_${VERSION}_checksums.txt \
|
&& sha512sum --ignore-missing --check caddy_${VERSION}_checksums.txt \
|
||||||
&& tar xf caddy_${VERSION}_linux_amd64.tar.gz \
|
&& tar xf caddy_${VERSION}_linux_amd64.tar.gz \
|
||||||
&& rm -f caddy_${VERSION}_linux.amd64.tar.gz LICENSE README.md caddy_${VERSION}_checksums.txt \
|
&& rm -f caddy_${VERSION}_linux.amd64.tar.gz LICENSE README.md caddy_${VERSION}_checksums.txt \
|
||||||
|
|||||||
@ -71,6 +71,15 @@
|
|||||||
enabled: true
|
enabled: true
|
||||||
tags: config
|
tags: config
|
||||||
|
|
||||||
|
- name: Enable libvirtd Service
|
||||||
|
become: true
|
||||||
|
become_method: sudo
|
||||||
|
ansible.builtin.systemd_service:
|
||||||
|
name: libvirtd
|
||||||
|
state: started
|
||||||
|
enabled: true
|
||||||
|
tags: config
|
||||||
|
|
||||||
- name: Enable mdns in Firewall
|
- name: Enable mdns in Firewall
|
||||||
become: true
|
become: true
|
||||||
become_method: sudo
|
become_method: sudo
|
||||||
|
|||||||
@ -41,9 +41,14 @@
|
|||||||
- cockpit-ostree
|
- cockpit-ostree
|
||||||
- cockpit-podman
|
- cockpit-podman
|
||||||
- cockpit-storaged
|
- cockpit-storaged
|
||||||
|
- cockpit-machines
|
||||||
- zerotier-one
|
- zerotier-one
|
||||||
- python3-pip
|
- python3-pip
|
||||||
- smartmontools
|
- smartmontools
|
||||||
|
- qemu-kvm
|
||||||
|
- qemu-system-x86
|
||||||
|
- libvirt-daemon-driver-qemu
|
||||||
|
- libvirt-client
|
||||||
tags: install
|
tags: install
|
||||||
|
|
||||||
- name: Install local tools
|
- name: Install local tools
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user