CodeCommitsIssuesPull requestsActionsInsightsSecurity
5e2cc37381ca7fcd54b43059a2a65caf8ad4bc6f

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

debian/clickhouse-server.config

16lines · modecode

1#!/bin/sh -e
2
3test -f /usr/share/debconf/confmodule && . /usr/share/debconf/confmodule
4
5db_fget clickhouse-server/default-password seen || true
6password_seen="$RET"
7
8if [ "$1" = "reconfigure" ]; then
9 password_seen=false
10fi
11
12if [ "$password_seen" != "true" ]; then
13 db_input high clickhouse-server/default-password || true
14 db_go || true
15fi
16db_go || true