diff options
author | Anoop C S <anoopcs@redhat.com> | 2017-10-11 13:29:13 +0530 |
---|---|---|
committer | Jeff Darcy <jeff@pl.atyp.us> | 2017-10-18 14:27:41 +0000 |
commit | 087703fae449b725ebd82bc3cd65763a016fb098 (patch) | |
tree | 34ba22f3c5547b0b6e8a29a6b10c719639ebd005 /extras/hook-scripts/create/post/S10selinux-label-brick.sh | |
parent | f0650fef60ca557ea1c60458f705ac9b52854b39 (diff) |
extras/hooks: Fix errors reported via shellcheck utility
Change-Id: I217c6b2a39955f1709bb3452b00d33c2dcb60faa
BUG: 1500649
Signed-off-by: Anoop C S <anoopcs@redhat.com>
Diffstat (limited to 'extras/hook-scripts/create/post/S10selinux-label-brick.sh')
-rwxr-xr-x | extras/hook-scripts/create/post/S10selinux-label-brick.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/hook-scripts/create/post/S10selinux-label-brick.sh b/extras/hook-scripts/create/post/S10selinux-label-brick.sh index f38555c26c0..94c624dbf59 100755 --- a/extras/hook-scripts/create/post/S10selinux-label-brick.sh +++ b/extras/hook-scripts/create/post/S10selinux-label-brick.sh @@ -14,7 +14,7 @@ OPTSPEC="volname:" VOL= parse_args () { - ARGS=$(getopt -l $OPTSPEC -name $PROGNAME $@) + ARGS=$(getopt -l $OPTSPEC -name $PROGNAME "$@") eval set -- "$ARGS" while true; do @@ -53,7 +53,7 @@ set_brick_labels() SELINUX_STATE=$(which getenforce && getenforce) [ "${SELINUX_STATE}" = 'Disabled' ] && exit 0 -parse_args $@ +parse_args "$@" [ -z "$VOL" ] && exit 1 set_brick_labels $VOL |