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