X7ROOT File Manager
Current Path:
/usr/lib/dracut/modules.d/99base
usr
/
lib
/
dracut
/
modules.d
/
99base
/
📁
..
📄
dracut-lib.sh
(32.09 KB)
📄
init.sh
(11.2 KB)
📄
initqueue.sh
(1.18 KB)
📄
loginit.sh
(584 B)
📄
memtrace-ko.sh
(5.91 KB)
📄
module-setup.sh
(3.77 KB)
📄
parse-root-opts.sh
(356 B)
📄
rdsosreport.sh
(942 B)
Editing: initqueue.sh
#!/bin/sh # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- # ex: ts=8 sw=4 sts=4 et filetype=sh # # Licensed under the GPLv2+ # # Copyright 2008-2010, Red Hat, Inc. # Harald Hoyer <harald@redhat.com> PATH=/usr/sbin:/usr/bin:/sbin:/bin type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh while [ $# -gt 0 ]; do case "$1" in --onetime) onetime="yes";; --online) qname="/online";; --settled) qname="/settled";; --finished) qname="/finished";; --timeout) qname="/timeout";; --unique) unique="yes";; --name) name="$2";shift;; --env) env="$2"; shift;; *) break;; esac shift done if [ -z "$unique" ]; then job="${name}$$" else job="${name:-$1}" job=${job##*/} fi exe=$1 shift [ -x "$exe" ] || exe=$(command -v $exe) { [ -n "$onetime" ] && echo '[ -e "$job" ] && rm -f -- "$job"' [ -n "$env" ] && echo "$env" echo "$exe" "$@" } > "/tmp/$$-${job}.sh" mv -f "/tmp/$$-${job}.sh" "$hookdir/initqueue${qname}/${job}.sh" [ -z "$qname" ] && >> $hookdir/initqueue/work exit 0
Upload File
Create Folder