Commit dc024644 authored by Vincent Pelletier's avatar Vincent Pelletier

shell/cahcase.sh: Move cas_found initialisation closer to usage.

Makes the code easier to read.
parent 87cae25c
...@@ -1183,7 +1183,7 @@ EOF ...@@ -1183,7 +1183,7 @@ EOF
# shellcheck disable=SC2039 # shellcheck disable=SC2039
local netloc="$1" \ local netloc="$1" \
cas_file \ cas_file \
cas_found=0 \ cas_found \
csr_id \ csr_id \
status \ status \
tmp_dir \ tmp_dir \
...@@ -1296,6 +1296,7 @@ EOF ...@@ -1296,6 +1296,7 @@ EOF
if [ ! -d cas_crt ]; then if [ ! -d cas_crt ]; then
_fail 'cas_crt not created\n' _fail 'cas_crt not created\n'
fi fi
cas_found=0
for cas_file in cas_crt/*; do for cas_file in cas_crt/*; do
if [ -r "$cas_file" ] && [ ! -h "$cas_file" ]; then if [ -r "$cas_file" ] && [ ! -h "$cas_file" ]; then
if [ "$cas_found" -eq 1 ]; then if [ "$cas_found" -eq 1 ]; then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment