2014-09-20 12:09:36 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
db_user=freshrss
|
|
|
|
db_name=freshrss
|
|
|
|
db_pwd=$(sudo yunohost app setting freshrss mysqlpwd)
|
|
|
|
app_path=/var/www/freshrss
|
|
|
|
|
|
|
|
myuser=$1
|
|
|
|
|
|
|
|
#check wallabag
|
|
|
|
if [[ $(sudo yunohost app list -f wallabag | /bin/grep -q "installed: True") -eq 0 ]]; then
|
|
|
|
echo "Detected wallabag"
|
|
|
|
$wallabagPath=$(sudo yunohost app setting wallabag path)
|
|
|
|
$wallabagUrl=$domain$wallabagPath
|
|
|
|
$sharingWallabag="array('type' => 'wallabag','name' => 'Wallabag','url' => 'https://$wallabagUrl',),"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#copy sql
|
|
|
|
sudo cp $app_path/app/SQL/install_ynh.sql /tmp/$myuser-install.sql
|
|
|
|
#change username in sql
|
|
|
|
sudo sed -i "s/YnoUser/$myuser/g" /tmp/$myuser-install.sql
|
|
|
|
#create tables
|
|
|
|
mysql -u $db_user -p$db_pwd $db_user < /tmp/$myuser-install.sql
|
|
|
|
#remove temp sql
|
|
|
|
sudo rm /tmp/$myuser-install.sql
|
|
|
|
#copy default conf
|
2015-02-08 18:55:48 +01:00
|
|
|
#copy default conf
|
|
|
|
sudo mkdir $app_path/data/$myuser/
|
|
|
|
sudo cp $app_path/data/user.php.dist $app_path/data/$myuser/config.php
|
2014-09-20 12:09:36 +02:00
|
|
|
#change username
|
2015-02-08 18:55:48 +01:00
|
|
|
sudo sed -i "s/YnoUser/$myuser/g" $app_path/data/$myuser/config.php
|
2014-09-20 12:09:36 +02:00
|
|
|
#add wallabag sharing
|
2015-02-08 18:55:48 +01:00
|
|
|
sudo sed -i "s/sharingArrayYnh/$sharingWallabag/g" $app_path/data/$myuser/config.php
|
|
|
|
touch $app_path/data/$myuser/log.txt
|
|
|
|
chown www-data: $app_path/data/$myuser -R
|