mirror of
https://github.com/runcitadel/core.git
synced 2024-11-11 16:30:38 +00:00
20 lines
527 B
Bash
Executable File
20 lines
527 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
CITADEL_ROOT="$(readlink -f $(dirname "${BASH_SOURCE[0]}")/..)"
|
|
|
|
resource="${1}"
|
|
interval="${2}"
|
|
|
|
status_script="${CITADEL_ROOT}/scripts/status/${resource}"
|
|
output_path="${CITADEL_ROOT}/statuses/${resource}-status.json"
|
|
|
|
# Every $interval seconds, run the status script and write the output to the $output_path.
|
|
while true; do
|
|
"${status_script}" > "${output_path}"
|
|
sleep "${interval}"
|
|
done
|