mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 06:59:56 -06:00
13 lines
330 B
Bash
Executable File
13 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
# btrfs_check start <dev> <id> <options>
|
|
# btrfs_check status <dev> <id>
|
|
# btrfs_check cancel <dev> <id>
|
|
# btrfs_check reset <mountpoint>
|
|
|
|
FSCK="/sbin/btrfs check"
|
|
|
|
[[ $1 == reset ]] && exec /sbin/btrfs device stats -z "$2"
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$SCRIPT_DIR/check.source"
|