SIEMbitwardendnscrypthome assistantjellyfinjitsimulti-factor authenticationnextcloudonlyofficepiholeraspberry pirocket.chatsyncthingtorwazuhwireguard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
314 B
7 lines
314 B
#!/bin/bash |
|
|
|
# wal-e specific configuration |
|
echo "wal_level = $WAL_LEVEL" >> $PGDATA/postgresql.conf |
|
echo "archive_mode = $ARCHIVE_MODE" >> $PGDATA/postgresql.conf |
|
echo "archive_command = '/usr/bin/wal-e wal-push %p'" >> $PGDATA/postgresql.conf |
|
echo "archive_timeout = $ARCHIVE_TIMEOUT" >> $PGDATA/postgresql.conf
|
|
|