Files
DFWebOS-Apps/openresty-manager/hooks/pre-start

12 lines
469 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
set -euo pipefail
APP_DATA_DIR="$(readlink -f $(dirname "${BASH_SOURCE[0]}")/..)"
# Убедитесь, что существует новый каталог журналов для приложений, обновляющихся из старой версии, в которой его не было.
LOG_DATA_DIR="${APP_DATA_DIR}/data/logs"
[ ! -d "${LOG_DATA_DIR}" ] && mkdir -p "${LOG_DATA_DIR}" && chown 1000:1000 "${LOG_DATA_DIR}"
exit 0