2014-06-20 16:05:44 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#Script to setup the vagrant instance for running friendica
|
|
|
|
#
|
|
|
|
#DO NOT RUN on your physical machine as this won't be of any use
|
|
|
|
#and f.e. deletes your /var/www/ folder!
|
|
|
|
|
|
|
|
#make the vagrant directory the docroot
|
|
|
|
rm -rf /var/www/
|
|
|
|
ln -fs /vagrant /var/www
|
|
|
|
|
2014-06-20 18:32:40 +02:00
|
|
|
#delete .htconfig.php file if it exists to have a fresh friendica
|
|
|
|
#installation
|
|
|
|
if [ -f /vagrant/.htconfig.php ]
|
|
|
|
then
|
|
|
|
rm /vagrant/.htconfig.php
|
|
|
|
fi
|
|
|
|
|
2014-09-05 23:57:17 +02:00
|
|
|
#change ownership of dir where sessions are stored
|
|
|
|
chown -R www-data:www-data /var/lib/php5
|
|
|
|
|
2014-06-20 16:05:44 +02:00
|
|
|
#create the friendica database
|
|
|
|
echo "create database friendica" | mysql -u root -proot
|
|
|
|
|
|
|
|
#create cronjob
|
|
|
|
echo "*/10 * * * * cd /vagrant; /usr/bin/php include/poller.php" >> friendicacron
|
|
|
|
crontab friendicacron
|
|
|
|
rm friendicacron
|
|
|
|
|
2014-06-20 18:32:40 +02:00
|
|
|
#Optional: checkout addon repositroy
|
2014-06-20 16:05:44 +02:00
|
|
|
#git clone https://github.com/friendica/friendica-addons.git /vagrant/addon
|