Skip to content

Commit a7d5958

Browse files
committed
Fixing bug in using _rmrf
1 parent f0203e9 commit a7d5958

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.2
1+
1.0.3

overlay/etc/cont-init.d/21-ssl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ set -euo pipefail
99

1010
if [ "${CLEAN_INSTALL}" = "1" ] ; then
1111

12-
_echo "Clean install detected, cleaning ${SSL_CERTS} and ${SITES}..."
13-
_rmrf ${SSL_GLOBAL_CFG}
14-
_rmrf ${SSL_CERTS}/*
15-
_rmrf ${SITES}/*
12+
_echo "Clean install detected..."
13+
_rmrf "${SSL_GLOBAL_CFG}"
14+
_rmrf "${SSL_CERTS}/*"
15+
_rmrf "${SITES}/*"
1616
_done
1717

1818
fi

overlay/usr/local/bin/nginx-regenerate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -euo pipefail
88
#======================================================================================================================
99

1010
_echo "Removing nginx configuration files..."
11-
_rmrf ${SITES}/*
11+
_rmrf "${SITES}/*"
1212
_done
1313

1414
ssl-init

overlay/usr/local/bin/ssl-regenerate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -euo pipefail
88
#======================================================================================================================
99

1010
_echo "Removing SSL configuration files and certificates..."
11-
_rmrf ${SSL_CERTS}/*
11+
_rmrf "${SSL_CERTS}/*"
1212
_done
1313

1414
ssl-init

0 commit comments

Comments
 (0)