nadeko/init/40_configuration.sh

17 lines
779 B
Bash
Raw Normal View History

2016-05-05 14:42:47 +00:00
#!/bin/bash
#Test Configuration
2016-05-06 07:26:52 +00:00
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
2016-05-05 14:42:47 +00:00
#Remove Built in
2016-05-06 07:26:52 +00:00
rm /root/NadekoBot/credentials.json
rm /root/NadekoBot/data/nadekobot.sqlite
rm /root/NadekoBot/data/config_example.json
2016-05-05 14:42:47 +00:00
#Adding Config file sym links
ln -s /config/credentials.json /root/NadekoBot/credentials.json
ln -s /config/nadekobot.sqlite /root/NadekoBot/data/nadekobot.sqlite
2016-05-06 07:26:52 +00:00
ln -s /config/config.json /root/NadekoBot/data/config.json