diff options
author | Brian Behlendorf <[email protected]> | 2009-07-24 08:50:05 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-07-24 08:50:05 -0700 |
commit | 75ddd265cbd9345c94c353e7e533f44d50e927d1 (patch) | |
tree | 5471b204abd0b9a3ef8d227ce2628856b430076f /scripts | |
parent | 154612b3306f611416c65b7b0d1cfab74e657618 (diff) |
Remove a stray | in the zpios-survey script which caused it to fail.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/zpios-survey.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/zpios-survey.sh b/scripts/zpios-survey.sh index 6c5e1935b..0594f1387 100755 --- a/scripts/zpios-survey.sh +++ b/scripts/zpios-survey.sh @@ -18,9 +18,9 @@ OPTIONS: -h Show this message -v Verbose -p Enable profiling - -c Zpool configuration + -c Zpool configuration -t Zpios test - -l Zpios survey log + -l Zpios survey log EOF } @@ -58,8 +58,8 @@ zpios_survey_prefetch() { ./zfs.sh ${VERBOSE_FLAG} \ tee -a ${ZPIOS_SURVEY_LOG} - ./zpios.sh ${VERBOSE_FLAG} -c ${ZPOOL_CONFIG} -t ${ZPIOS_TEST} | \ - -o "--noprefetch" | \ + ./zpios.sh ${VERBOSE_FLAG} -c ${ZPOOL_CONFIG} -t ${ZPIOS_TEST} \ + -o "--noprefetch" | \ tee -a ${ZPIOS_SURVEY_LOG} ./zfs.sh -u ${VERBOSE_FLAG} | \ tee -a ${ZPIOS_SURVEY_LOG} @@ -193,7 +193,7 @@ while getopts 'hvpc:t:l:' OPTION; do done if [ $(id -u) != 0 ]; then - die "Must run as root" + die "Must run as root" fi zpios_survey_base |