1
1
#! /bin/sh
2
+ # vim:sw=2:ts=2:sts=2:et
2
3
3
4
set -e
4
5
5
- ME=$( basename $0 )
6
+ ME=$( basename " $0 " )
6
7
7
8
entrypoint_log () {
8
- if [ -z " ${NGINX_ENTRYPOINT_QUIET_LOGS:- } " ]; then
9
- echo " $@ "
10
- fi
9
+ if [ -z " ${NGINX_ENTRYPOINT_QUIET_LOGS:- } " ]; then
10
+ echo " $@ "
11
+ fi
11
12
}
12
13
13
14
add_stream_block () {
@@ -17,9 +18,12 @@ add_stream_block() {
17
18
entrypoint_log " $ME : $conffile contains a stream block; include $stream_output_dir /*.conf to enable stream templates"
18
19
else
19
20
# check if the file can be modified, e.g. not on a r/o filesystem
20
- touch " $conffile " 2> /dev/null || { entrypoint_log " $ME : info: can not modify $conffile (read-only file system?)" ; exit 0; }
21
- entrypoint_log " $ME : Appending stream block to $conffile to include $stream_output_dir /*.conf"
22
- cat << END >> "$conffile "
21
+ touch " $conffile " 2> /dev/null || {
22
+ entrypoint_log " $ME : ERROR: can not modify $conffile (read-only file system?)"
23
+ exit 0
24
+ }
25
+ entrypoint_log " $ME : info: Appending stream block to $conffile to include $stream_output_dir /*.conf"
26
+ cat << END >>"$conffile "
23
27
# added by "$ME " on "$( date) "
24
28
stream {
25
29
include $stream_output_dir /*.conf;
@@ -37,20 +41,21 @@ auto_envsubst() {
37
41
local filter=" ${NGINX_ENVSUBST_FILTER:- } "
38
42
39
43
local template defined_envs relative_path output_path subdir
40
- defined_envs=$( printf ' ${%s} ' $( awk " END { for (name in ENVIRON) { print ( name ~ /${filter} / ) ? name : \"\" } }" < /dev/null ) )
44
+
45
+ defined_envs=$( printf ' ${%s} ' $( awk " END { for (name in ENVIRON) { print ( name ~ /${filter} / ) ? name : \"\" } }" < /dev/null) )
41
46
[ -d " $template_dir " ] || return 0
42
47
if [ ! -w " $output_dir " ]; then
43
48
entrypoint_log " $ME : ERROR: $template_dir exists, but $output_dir is not writable"
44
49
return 0
45
50
fi
46
51
find " $template_dir " -follow -type f -name " *$suffix " -print | while read -r template; do
47
- relative_path=" ${template# $template_dir / } "
48
- output_path=" $output_dir /${relative_path% $suffix } "
52
+ relative_path=" ${template# " $template_dir /" } "
53
+ output_path=" $output_dir /${relative_path% " $suffix " } "
49
54
subdir=$( dirname " $relative_path " )
50
55
# create a subdirectory where the template file exists
51
56
mkdir -p " $output_dir /$subdir "
52
- entrypoint_log " $ME : Running envsubst on $template to $output_path "
53
- envsubst " $defined_envs " < " $template " > " $output_path "
57
+ entrypoint_log " $ME : info: Running envsubst on $template to $output_path "
58
+ envsubst " $defined_envs " < " $template " > " $output_path "
54
59
done
55
60
56
61
# Print the first file with the stream suffix, this will be false if there are none
@@ -62,13 +67,13 @@ auto_envsubst() {
62
67
fi
63
68
add_stream_block
64
69
find " $template_dir " -follow -type f -name " *$stream_suffix " -print | while read -r template; do
65
- relative_path=" ${template# $template_dir / } "
66
- output_path=" $stream_output_dir /${relative_path% $stream_suffix } "
70
+ relative_path=" ${template# " $template_dir /" } "
71
+ output_path=" $stream_output_dir /${relative_path% " $stream_suffix " } "
67
72
subdir=$( dirname " $relative_path " )
68
73
# create a subdirectory where the template file exists
69
74
mkdir -p " $stream_output_dir /$subdir "
70
- entrypoint_log " $ME : Running envsubst on $template to $output_path "
71
- envsubst " $defined_envs " < " $template " > " $output_path "
75
+ entrypoint_log " $ME : info: Running envsubst on $template to $output_path "
76
+ envsubst " $defined_envs " < " $template " > " $output_path "
72
77
done
73
78
fi
74
79
}
0 commit comments