mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-20 21:21:51 +02:00
12 lines
214 B
Bash
12 lines
214 B
Bash
#!/bin/sh
|
|
|
|
cat >&2 <<EOF
|
|
*
|
|
* Run as postgres user to create configuration for the Czech dictionary in the
|
|
* specified database:
|
|
* psql -d template1 -X < /usr/share/postgresql/tsearch_czech_create.sql
|
|
*
|
|
EOF
|
|
|
|
exit 0
|