1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00
ttrss_ynh/scripts/install

72 lines
2.3 KiB
Text
Raw Normal View History

#!/bin/bash
# Retrieve arguments
domain=$1
path=$2
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a ttrss
if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Generate random DES key & password
2014-05-29 20:23:02 +02:00
deskey=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
# Use 'ttrss' as database name and user
db_user=ttrss
# Initialize database and store mysql password for upgrade
2013-11-29 15:41:59 +01:00
sudo yunohost app initdb $db_user -p $db_pwd -s $(readlink -e ../source/schema/TTRSS_schema_mysql.sql)
sudo yunohost app setting ttrss mysqlpwd -v $db_pwd
# Copy files to the right place
2015-01-22 17:56:46 +01:00
final_path=/var/www/ttrss
sudo mkdir -p $final_path
sudo cp -r ../source/* $final_path
sudo cp ../conf/config.php $final_path/
2015-02-20 09:55:14 +01:00
sudo cp ../conf/*.patch /tmp/
2015-02-20 09:47:33 +01:00
sudo patch -d $final_path -p0 < /tmp/update.patch
sudo patch -d $final_path/plugins/auth_remote/ -p0 < /tmp/init.patch
2015-01-22 17:56:46 +01:00
# Change variables in ttrss configuration
2013-11-24 18:14:27 +01:00
sudo sed -i "s/yunouser/$db_user/g" $final_path/config.php
2013-11-24 18:30:44 +01:00
sudo sed -i "s/yunopass/$db_pwd/g" $final_path/config.php
2013-11-24 18:14:27 +01:00
sudo sed -i "s/yunobase/$db_user/g" $final_path/config.php
sudo sed -i "s,yunopath,https://$domain$path,g" $final_path/config.php
2013-11-26 08:44:54 +01:00
echo "*/30 * * * * www-data cd $final_path && /usr/bin/php $final_path/update.php --feeds >/dev/null 2>&1" > /tmp/cronttrss
2013-11-24 20:30:17 +01:00
sudo mv /tmp/cronttrss /etc/cron.d/ttrss
2013-11-25 08:48:16 +01:00
sudo chown root /etc/cron.d/ttrss
2013-11-26 14:34:41 +01:00
sudo apt-get install php5-cli -y
2013-11-25 08:48:16 +01:00
2013-11-24 19:52:08 +01:00
#add folder
2015-02-20 09:59:58 +01:00
for i in export images upload js
do
if [ ! -d $final_path/cache/$i ]
sudo mkdir $final_path/cache/$i
if
sudo chmod -R 777 $final_path/cache/$i
done
2013-11-24 19:52:08 +01:00
2015-02-20 09:59:58 +01:00
for i in feed-icons lock
if [ ! -d $final_path/$i ]
sudo mkdir $final_path/$i
fi
sudo chmod -R 777 $final_path/$i
done
# Set permissions to ttrss directory
sudo chown -R www-data: $final_path
# Modify Nginx configuration file and copy it to Nginx conf directory
2013-11-24 18:02:17 +01:00
sudo sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sudo sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/ttrss.conf
# Reload Nginx and regenerate SSOwat conf
sudo service nginx reload
sudo yunohost app ssowatconf
2014-06-15 17:00:08 +02:00
sudo yunohost app setting ttrss skipped_uris -v "/public.php,/api"