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