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