From 4c2e4bab29a1030d87f5213b12dcfb38bcec2e83 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sun, 22 Dec 2024 10:26:09 -0500 Subject: [PATCH] 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") --- tools/ssl_cleanup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ssl_cleanup b/tools/ssl_cleanup index 5adfa1be..eb3eba7b 100755 --- a/tools/ssl_cleanup +++ b/tools/ssl_cleanup @@ -7,7 +7,8 @@ shopt -s extglob retain_after="$(date --date="7 days ago" +%Y%m%d)" 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")" not_valid_after="$(cut -d- -f1 <<< "${pem: -21}")"