mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
f1f1f09500
* cmake fixes * Fix test server config * Debian: temporary keep packages with old names * fix * fix * Debian postinst: adjustable user
10 lines
208 B
Bash
10 lines
208 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
CLICKHOUSE_USER=${CLICKHOUSE_USER=clickhouse}
|
|
|
|
mkdir -p /etc/clickhouse-client/conf.d
|
|
|
|
# user created by clickhouse-server package
|
|
chown -R ${CLICKHOUSE_USER} /etc/clickhouse-client || true
|