mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
fix error when glob matches nothing (variable 'file' will have the glob as a value in the for loop and produce the error "mv: cannot stat '/home/user-data/ssl/*-+([0-9])-+([0-9a-f]).pem': No such file or directory")
This commit is contained in:
parent
0aa7050221
commit
4c2e4bab29
@ -7,7 +7,8 @@ shopt -s extglob
|
|||||||
retain_after="$(date --date="7 days ago" +%Y%m%d)"
|
retain_after="$(date --date="7 days ago" +%Y%m%d)"
|
||||||
|
|
||||||
mkdir -p $STORAGE_ROOT/ssl.expired
|
mkdir -p $STORAGE_ROOT/ssl.expired
|
||||||
for file in $STORAGE_ROOT/ssl/*-+([0-9])-+([0-9a-f]).pem; do
|
ls $STORAGE_ROOT/ssl/*-+([0-9])-+([0-9a-f]).pem 2>/dev/null | while read file
|
||||||
|
do
|
||||||
pem="$(basename "$file")"
|
pem="$(basename "$file")"
|
||||||
not_valid_after="$(cut -d- -f1 <<< "${pem: -21}")"
|
not_valid_after="$(cut -d- -f1 <<< "${pem: -21}")"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user