mirror of
https://github.com/unraid/webgui.git
synced 2026-04-25 03:39:23 -05:00
e8a8291649
chore: refactor file sysem check scripts fix: fix some mode bits
11 lines
252 B
Bash
Executable File
11 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
# xfs_check start <dev> <id> <options>
|
|
# xfs_check status <dev> <id>
|
|
# xfs_check cancel <dev>
|
|
# xfs_check zero_log <dev>
|
|
|
|
FSCK="/sbin/xfs_repair"
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$SCRIPT_DIR/check.source"
|