Bram Moolenaar | 98be7fe | 2020-03-20 18:12:59 +0100 | [diff] [blame^] | 1 | #!/bin/bash |
2 | set -e | ||||
3 | |||||
4 | if ! modprobe snd-dummy; then | ||||
5 | # snd-dummy is contained in linux-modules-extra (if exists) | ||||
6 | apt install -y "linux-modules-extra-$(uname -r)" | ||||
7 | modprobe snd-dummy | ||||
8 | fi |