Skip to content

Commit 14d68b1

Browse files
committed
fix: dash instead of underscore
1 parent 2b09ce9 commit 14d68b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ansible/files/postgres_prestart.sh.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ update_orioledb_buffers() {
3333
}
3434

3535
check_extensions_file() {
36-
local extensions_file="/root/pg_extensions.json"
36+
local extensions_file="/root/pg-extensions.json"
3737
if [ ! -f "$extensions_file" ]; then
3838
log "extensions: No extensions file found, skipping extensions versions check"
3939
return 1
@@ -51,7 +51,7 @@ get_pg_cron_version() {
5151
fi
5252

5353
local version
54-
version=$(jq -r '.pg_cron // empty' "/root/pg_extensions.json")
54+
version=$(jq -r '.pg_cron // empty' "/root/pg-extensions.json")
5555
if [ -z "$version" ]; then
5656
log "pg_cron: Not specified in extensions file"
5757
return

0 commit comments

Comments
 (0)