diff --git a/roles/yavdr-common/files/list_pci_ids.sh b/roles/yavdr-common/files/list_pci_ids.sh deleted file mode 100644 index a43e0c3..0000000 --- a/roles/yavdr-common/files/list_pci_ids.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# return all vendor:device ids -# typical device path: -# /sys/devices/pci0000\:00/0000\:00\:1f.2/ - -for device in /sys/devices/pci*/*:*:*/; do - echo "$(cat "$device"/vendor):$(cat "$device"/device)" | sed 's/0x//g' -done -