mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 14:11:07 +02:00
12 lines
241 B
Bash
Executable File
12 lines
241 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
set -e
|
|
|
|
status=$(${VAULT_BIN_PATH} status -format=json)
|
|
version=$(${VAULT_BIN_PATH} version)
|
|
|
|
echo "{\"status\": ${status}, \"version\": \"${version}\"}"
|