This file is indexed.

/usr/lib/dracut/modules.d/81cio_ignore/parse-cio_accept.sh is in dracut-core 047-2.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh

CIO_IGNORE=$(getarg cio_ignore)
CIO_ACCEPT=$(getarg rd.cio_accept)

if [ -z $CIO_IGNORE ] ; then
    info "cio_ignored disabled on commandline"
    return
fi
if [ -n "$CIO_ACCEPT" ] ; then
    OLDIFS="$IFS"
    IFS=,
    set -- $CIO_ACCEPT
    while (($# > 0)) ; do
        info "Enabling device $1"
        cio_ignore --remove $1
        shift
    done
    IFS="$OLDIFS"
fi