File tree 2 files changed +6
-5
lines changed
modules/graphdb/templates
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
# IDEs
2
-
2
+ * .iml
3
3
.idea /
4
4
5
5
# Local .terraform directories
Original file line number Diff line number Diff line change 85
85
# Appends environment overrides to GDB_JAVA_OPTS
86
86
if [[ $SSM_PARAMETERS == * " /${name} /graphdb/graphdb_java_options" * ]]; then
87
87
extra_graphdb_java_options=" $( aws --cli-connect-timeout 300 ssm get-parameter --region ${region} --name " /${name} /graphdb/graphdb_java_options" --with-decryption | jq -r .Parameter.Value) "
88
- (
89
- source /etc/graphdb/graphdb.env
90
- echo " GDB_JAVA_OPTS=\" $GDB_JAVA_OPTS $extra_graphdb_java_options \" " >> /etc/graphdb/graphdb.env
91
- )
88
+ if grep GDB_JAVA_OPTS & > /dev/null /etc/graphdb/graphdb.env; then
89
+ sed -ie ' s/GDB_JAVA_OPTS="\(.*\)"/GDB_JAVA_OPTS="$extra_graphdb_java_options \1"/g' /etc/graphdb/graphdb.env
90
+ else
91
+ echo " GDB_JAVA_OPTS=$extra_garphdb_java_options " > /etc/graphdb/graphdb.env
92
+ fi
92
93
fi
93
94
94
95
log_with_timestamp " Completed applying overrides"
You can’t perform that action at this time.
0 commit comments