modules.d: get rid of "tr"
[platform/upstream/dracut.git] / modules.d / 95zfcp / module-setup.sh
1 #!/bin/bash
2 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
3 # ex: ts=8 sw=4 sts=4 et filetype=sh
4
5 check() {
6     arch=$(uname -m)
7     [ "$arch" = "s390" -o "$arch" = "s390x" ] || return 1
8
9     return 0
10 }
11
12 depends() {
13     arch=$(uname -m)
14     [ "$arch" = "s390" -o "$arch" = "s390x" ] || return 1
15
16     return 0
17 }
18
19 installkernel() {
20     instmods zfcp
21 }
22
23 install() {
24     inst_hook cmdline 30 "$moddir/parse-zfcp.sh"
25     dracut_install zfcp_cio_free grep sed seq
26
27     inst_script /sbin/zfcpconf.sh
28     inst_rules 56-zfcp.rules
29
30     if [[ $hostonly ]]; then
31         inst_simple /etc/zfcp.conf
32     fi
33 }