mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-14 06:27:16 +00:00
16 lines
389 B
Bash
16 lines
389 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
echo "export HISTFILE=\"${TFW_HISTFILE}\"" >> /tmp/bashrc &&
|
|
cat /tmp/bashrc >> "/home/${AVATAO_USER}/.bashrc"
|
|
|
|
if [[ -z "${HOTRELOAD-}" ]]; then
|
|
for dir in "${TFW_LIB_DIR}/tfw" "/etc/nginx" "/etc/supervisor"; do
|
|
chown -R root:root "${dir}" && chmod -R 700 "${dir}";
|
|
done
|
|
fi
|
|
|
|
chmod 777 "${TFW_PIPES_DIR}"
|
|
|
|
rm -f bashrc requirements.txt tfw_init.sh
|