mirror of
https://github.com/unraid/webgui.git
synced 2026-05-03 08:19:27 -05:00
e8a8291649
chore: refactor file sysem check scripts fix: fix some mode bits
10 lines
236 B
Bash
Executable File
10 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
# exfat_check start <dev> <id> <options>
|
|
# exfat_check status <dev> <id>
|
|
# exfat_check cancel <dev> <id>
|
|
|
|
FSCK="/sbin/fsck.exfat"
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$SCRIPT_DIR/check.source"
|