nadeko/init/50_configuration.sh
2016-05-09 09:14:24 +01:00

15 lines
614 B
Bash

#!/bin/bash
#Test Configuration
if test -f "/config/credentials.json"; then echo "Creds Exist"; else cp /root/NadekoBot/credentials_example.json /config/credentials.json; fi
if test -f "/config/nadekobot.sqlite"; then echo "SQlite Exist"; else echo "" > /config/nadekobot.sqlite; fi
if test -f "/config/config.json"; then echo "Config Exist"; else cp /root/NadekoBot/data/config_example.json /config/config.json; fi
#Remove Built in
rm /root/NadekoBot/credentials.json
#Adding Config file sym links
ln -s /config/credentials.json /root/NadekoBot/credentials.json
sudo ln -ds /config/data /root/nadekobot/data