423ba10303
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
9 lines
173 B
Text
9 lines
173 B
Text
fsck:
|
|
returns non-zero if it repaired something.
|
|
You have to wrap it into a shell-script :-(
|
|
|
|
#!/bin/sh
|
|
fsck $@
|
|
[ $? -le 1 ] && exit 0
|
|
exit 1
|
|
|