You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
621 B
26 lines
621 B
#!/bin/bash |
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- |
|
# ex: ts=8 sw=4 sts=4 et filetype=sh |
|
|
|
check() { |
|
return 0 |
|
} |
|
|
|
depends() { |
|
echo base |
|
return 0 |
|
} |
|
|
|
install() { |
|
local _d |
|
dracut_install umount poweroff reboot halt |
|
dracut_install -o kexec |
|
inst "$moddir/shutdown.sh" "$prefix/shutdown" |
|
[ -e "${initdir}/lib" ] || mkdir -m 0755 -p ${initdir}/lib |
|
mkdir -m 0755 -p ${initdir}/lib/dracut |
|
mkdir -m 0755 -p ${initdir}/lib/dracut/hooks |
|
for _d in $hookdirs shutdown shutdown-emergency; do |
|
mkdir -m 0755 -p ${initdir}/lib/dracut/hooks/$_d |
|
done |
|
} |
|
|
|
|