Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions nix/tools/run-server.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,12 @@ orioledb_config_items() {

# Apply OrioleDB configuration if needed
orioledb_config_items "$VERSION"

# Fix archive_command for macOS (Darwin doesn't have /bin/true, use /usr/bin/true instead)
if [[ "$CURRENT_SYSTEM" == *"-darwin" ]]; then
perl -pi -e "s|archive_command = '/bin/true'|archive_command = '/usr/bin/true'|" "$DATDIR/postgresql.conf"
fi

# Configure Groonga
export GRN_PLUGINS_DIR=$GROONGA/lib/groonga/plugins

Expand Down
Loading