Skip to content

Commit

Permalink
fix(style): fix style per shellcheck
Browse files Browse the repository at this point in the history
Signed-off-by: Cryptophobia <[email protected]>
  • Loading branch information
Cryptophobia committed Oct 9, 2020
1 parent 70d2867 commit f0579e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs/bin/boot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ REDIS_CONFIG_FILE=/etc/redis/redis.conf
REDIS_PASSWORD_FILE=/var/run/secrets/deis/redis/creds/password
if [ -e $REDIS_PASSWORD_FILE ]; then
REDIS_PASSWORD="$(cat /var/run/secrets/deis/redis/creds/password)"
if [ ! -z "$REDIS_PASSWORD" ]; then
if [ -n "$REDIS_PASSWORD" ]; then
echo "requirepass $REDIS_PASSWORD" >> $REDIS_CONFIG_FILE
fi
fi
Expand Down

0 comments on commit f0579e0

Please sign in to comment.