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.
27 lines
579 B
27 lines
579 B
#!/bin/bash |
|
|
|
# called by dracut |
|
check() { |
|
return 0 |
|
} |
|
|
|
# called by dracut |
|
depends() { |
|
echo base |
|
return 0 |
|
} |
|
|
|
# called by dracut |
|
install() { |
|
local _d |
|
inst_multiple umount poweroff reboot halt losetup stat |
|
inst_multiple -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 |
|
} |
|
|
|
|