File: module-setup.sh

package info (click to toggle)
dracut 109-11
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 4,864 kB
  • sloc: sh: 24,529; ansic: 5,234; makefile: 346; perl: 186; python: 48; javascript: 19
file content (23 lines) | stat: -rwxr-xr-x 556 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# called by dracut
depends() {
    echo base
    return 0
}

# called by dracut
install() {
    local _d
    inst_multiple umount poweroff reboot halt losetup stat sleep timeout
    inst_multiple -o kexec
    inst "$moddir/shutdown.sh" "$prefix/shutdown"
    mkdir -m 0755 -p "${initdir}"/var/lib/dracut/hooks

    # symlink to old hooks location for compatibility
    ln_r /var/lib/dracut/hooks /lib/dracut/hooks

    for _d in $hookdirs shutdown shutdown-emergency; do
        mkdir -m 0755 -p "${initdir}"/lib/dracut/hooks/"$_d"
    done
}