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.
45 lines
1.1 KiB
45 lines
1.1 KiB
#!/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 logs directory
|
|
if [ ! -d "/config/scripts/logs" ]; then
|
|
mkdir -p "/config/scripts/logs" && \
|
|
chmod 0777 -R "/config/scripts/logs"
|
|
fi
|
|
|
|
# create config directory
|
|
if [ ! -d "/config/scripts/configs" ]; then
|
|
mkdir -p "/config/scripts/configs" && \
|
|
chmod 0777 -R "/config/scripts/configs"
|
|
fi
|
|
|
|
# import new config, if does not exist
|
|
if [ ! -f "/config/scripts/configs/autoProcess.ini" ]; then
|
|
cp "/usr/local/sma/setup/autoProcess.ini.sample" "/config/scripts/configs/autoProcess.ini" && \
|
|
python3 /scripts/update.py
|
|
fi
|
|
|
|
# create sma log file
|
|
touch "/config/scripts/logs/sma.log" && \
|
|
|
|
# link sma files
|
|
ln -s "/config/scripts/logs/sma.log" "/usr/local/sma/config/sma.log" && \
|
|
ln -s "/config/scripts/configs/autoProcess.ini" "/usr/local/sma/config/autoProcess.ini" && \
|
|
|
|
# set permissions
|
|
chmod 0666 "/config/scripts/logs"/*
|
|
chmod 0777 -R "/usr/local/sma"
|
|
chmod 0777 -R "/scripts"
|
|
|
|
exit 0
|