mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
9 lines
193 B
Bash
9 lines
193 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if ! modprobe snd-dummy; then
|
||
|
# snd-dummy is contained in linux-modules-extra (if exists)
|
||
|
apt install -y "linux-modules-extra-$(uname -r)"
|
||
|
modprobe snd-dummy
|
||
|
fi
|