mirror of
https://github.com/unraid/webgui.git
synced 2026-01-02 07:30:06 -06:00
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"
|