mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 22:50:25 -06:00
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"
|