view ci/load-snd-dummy.sh @ 30828:0f439fcdfa1a

Added tag v9.0.0748 for changeset 0c30130f8c94bca5bf2808fde4945c04bca148ff
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Oct 2022 13:15:05 +0200
parents 3a7017ee1161
children
line wrap: on
line source

#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi