mirror of
https://github.com/bitnami/containers.git
synced 2026-03-20 14:58:20 +08:00
22 lines
449 B
Bash
Executable File
22 lines
449 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
# set -o xtrace # Uncomment this line for debugging purpose
|
|
|
|
# Load libraries
|
|
. /libfs.sh
|
|
. /liblogstash.sh
|
|
|
|
# Load Logstash environment variables
|
|
eval "$(logstash_env)"
|
|
|
|
for dir in "$LOGSTASH_CONF_DIR" "$LOGSTASH_LOG_DIR" "$LOGSTASH_MOUNTED_CONF_DIR" "$LOGSTASH_VOLUME_DIR" "$LOGSTASH_DATA_DIR"; do
|
|
ensure_dir_exists "$dir"
|
|
chmod -R g+rwX "$dir"
|
|
done
|
|
|