You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/enos/modules/aws_vault/scripts/create_audit_log_dir.sh

34 lines
606 B

#!/usr/bin/env bash
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
set -eux
LOG_DIR=$(dirname "$LOG_FILE_PATH")
function retry {
local retries=$1
shift
local count=0
until "$@"; do
exit=$?
wait=10
count=$((count + 1))
if [ "$count" -lt "$retries" ]; then
sleep "$wait"
else
return "$exit"
fi
done
return 0
}
# Strangely, sometimes the service user has not been created yet. This retry awaits the creation of the user
retry 7 id -a "$SERVICE_USER"
sudo mkdir -p "$LOG_DIR"
sudo chown -R "$SERVICE_USER":"$SERVICE_USER" "$LOG_DIR"