|
|
|
@ -10,7 +10,14 @@ if [ ! -f /var/lib/postgresql/data/setupFinished ]; then
|
|
|
|
|
sleep 5
|
|
|
|
|
done
|
|
|
|
|
>&2 echo "### importing table schemas"
|
|
|
|
|
su postgres -c "/setup.sh" && touch /var/lib/postgresql/data/setupFinished
|
|
|
|
|
su postgres -c 'createdb invidious'
|
|
|
|
|
su postgres -c 'psql -c "CREATE USER kemal WITH PASSWORD '"'kemal'"'"'
|
|
|
|
|
su postgres -c 'psql invidious < config/sql/channels.sql'
|
|
|
|
|
su postgres -c 'psql invidious < config/sql/videos.sql'
|
|
|
|
|
su postgres -c 'psql invidious < config/sql/channel_videos.sql'
|
|
|
|
|
su postgres -c 'psql invidious < config/sql/users.sql'
|
|
|
|
|
su postgres -c 'psql invidious < config/sql/nonces.sql'
|
|
|
|
|
touch /var/lib/postgresql/data/setupFinished
|
|
|
|
|
echo "### invidious database setup finished"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|