ubuntu-22.04.3-desktop-amd64/casper/filesystem/usr/lib/post-base-installer.d/60dmraid

10 lines
167 B
Bash
Executable File

#! /bin/sh
set -e
if grep -q " device-mapper$" /proc/misc; then
if type dmraid >/dev/null 2>&1 &&
dmraid -s -c >/dev/null 2>&1; then
apt-install dmraid
fi
fi