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.

37 lines
836 B

#!/usr/bin/with-contenv bash
# Remove exisitng
if [ -d "/config/scripts/logs" ]; then
rm -rf "/config/scripts/logs" && \
sleep 0.1
fi
if [ -d "/usr/local/sma/config" ]; then
rm -rf /usr/local/sma/config/* && \
sleep 0.1
fi
# create config directory
if [ ! -d "/config/scripts/logs" ]; then
mkdir -p "/config/scripts/logs" && \
chmod 0777 -R "/config/scripts/logs"
fi
# import new config, if does not exist
if [ ! -f "/config/sma/autoProcess.ini" ]; then
cp "/usr/local/sma/setup/autoProcess.ini.sample" "/usr/local/sma/config/autoProcess.ini"
fi
# create sma log file
touch "/config/scripts/logs/sma.log" && \
# link sma log file
ln -s "/config/scripts/logs/sma.log" "/usr/local/sma/config/sma.log" && \
# set permissions
chmod 0666 "/config/scripts/logs"/*
chmod 0777 -R "/usr/local/sma"
chmod 0777 -R "/scripts"
exit 0