summarylogtreecommitdiffstats
path: root/autofsck_install
blob: 24002f97ee778c0013a643eb98cf1ae52371f338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

build() {
    add_runscript
}

help() {
    cat <<HELPEOF
This hook attempts to automate fixing fsck errors by running 'fsck -a [device]'. Will fallback to terminal on failure to fix disk.
HELPEOF
}


# vim: set ft=sh ts=4 sw=4 et: