24 lines
651 B
Bash
Executable File
24 lines
651 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
apk add greptimedb \
|
|
greptimedb-datanode-openrc \
|
|
greptimedb-docs \
|
|
greptimedb-flownode-openrc \
|
|
greptimedb-frontend-openrc \
|
|
greptimedb-metasrv-openrc \
|
|
greptimedb-standalone-openrc
|
|
|
|
test -x /usr/bin/greptime
|
|
test -d /etc/greptimedb
|
|
test -f /etc/greptimedb/standalone.toml
|
|
test -f /etc/conf.d/greptimedb.standalone
|
|
test -f /etc/init.d/greptimedb.standalone
|
|
test -f /usr/share/doc/greptimedb/config/config.md
|
|
test -f /usr/share/doc/greptimedb/config/standalone.example.toml
|
|
|
|
greptime --version
|
|
|
|
rc-update add greptimedb.standalone default || true
|
|
test -L /etc/runlevels/default/greptimedb.standalone
|