/
githubmirror
/
dracut
Обзор
Документация
Войти
/
githubmirror
/
dracut
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
048
modules.d/91crypt-loop/module-setup.sh
25 строк
375 B
James Lee
crypt-loop: Always include 'loop' kernel module
26 мар 2015, 09:17
26 мар 2015, 09:17
833e0f9
Код
Авторство
О чём код?
#!/bin/bash # called by dracut check() { require_binaries losetup || return 1 return 255 } # called by dracut depends() { echo crypt } # called by dracut installkernel() { hostonly='' instmods loop } # called by dracut install() { inst_multiple losetup inst "$moddir/crypt-loop-lib.sh" "/lib/dracut-crypt-loop-lib.sh" dracut_need_initqueue }