re-create cdi on reboot
This commit is contained in:
parent
7603ff9829
commit
49659dce66
|
@ -0,0 +1,9 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Rebuild cdi on boot
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStart=/usr/bin/nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
|
@ -46,6 +46,20 @@
|
||||||
args:
|
args:
|
||||||
creates: /etc/cdi/nvidia.yaml
|
creates: /etc/cdi/nvidia.yaml
|
||||||
|
|
||||||
|
- name: Create systemd unit file
|
||||||
|
template:
|
||||||
|
src: createcdi.service.j2
|
||||||
|
dest: /etc/systemd/system/createcdi.service
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: '0644'
|
||||||
|
|
||||||
|
- name: libnvidia-container | automatically regenerate cdi
|
||||||
|
systemd:
|
||||||
|
name: createcdi
|
||||||
|
enabled: yes
|
||||||
|
state: started
|
||||||
|
|
||||||
- name: Install podman
|
- name: Install podman
|
||||||
apt:
|
apt:
|
||||||
name: [ 'podman', 'podman-compose' ]
|
name: [ 'podman', 'podman-compose' ]
|
||||||
|
|
Loading…
Reference in New Issue