blob: b0101b0f8a19509ef61b9b310cf90137e88e3c0d [file] [log] [blame]
Bram Moolenaar98be7fe2020-03-20 18:12:59 +01001#!/bin/bash
2set -e
3
4if ! modprobe snd-dummy; then
5 # snd-dummy is contained in linux-modules-extra (if exists)
Bram Moolenaara7c4e742020-08-19 19:46:12 +02006 apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
Bram Moolenaar98be7fe2020-03-20 18:12:59 +01007 modprobe snd-dummy
8fi