12 lines
204 B
Bash
Executable file
12 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
sed \
|
|
-e "s/!!POSTGRES_PASSWORD!!/${POSTGRES_PASSWORD}/g" \
|
|
/attic/server.toml.tmpl \
|
|
> /run/server.toml
|
|
|
|
exec /bin/atticd \
|
|
-f /run/server.toml \
|
|
--mode monolithic
|