/
githubmirror
/
dracut
Обзор
Документация
Войти
/
githubmirror
/
dracut
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
034
modules.d/00dash/module-setup.sh
19 строк
404 B
Harald Hoyer
renamed module-info.sh to module-setup.sh
02 фев 2011, 18:35
02 фев 2011, 18:35
71df3c4
Код
Авторство
О чём код?
#!/bin/bash # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- # ex: ts=8 sw=4 sts=4 et filetype=sh check() { [ -x /bin/dash ] } depends() { return 0 } install() { # If another shell is already installed, do not use dash [[ -x $initdir/bin/sh ]] && return # Prefer dash as /bin/sh if it is available. inst /bin/dash && ln -sf dash "${initdir}/bin/sh" }