1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ffsync_ynh.git synced 2024-09-03 18:26:38 +02:00
ffsync_ynh/scripts/install

106 lines
3.2 KiB
Text
Raw Normal View History

2013-12-12 12:12:22 +01:00
#!/bin/bash
# Source app helpers
. /usr/share/yunohost/helpers
2013-12-12 12:12:22 +01:00
# Retrieve arguments
domain=$1
path=$2
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a ffsync
if [[ ! $? -eq 0 ]]; then
ynh_die
2013-12-12 12:12:22 +01:00
fi
# Generate random password
2015-02-13 18:10:02 +01:00
db_pwd=$(head -c 8 /dev/urandom | sha1sum | cut -d " " -f1)
2013-12-12 12:12:22 +01:00
# Use 'FSyncMS' as database name and user
db_user=ffsync
# Initialize database and store mysql password for upgrade
2014-11-15 17:24:32 +01:00
sudo yunohost app initdb $db_user -p $db_pwd
ynh_app_setting_set ffsync mysqlpwd $db_pwd
2013-12-12 12:12:22 +01:00
# Generate random password and save
secret=$(head -c 20 /dev/urandom | sha1sum | cut -d " " -f1)
ynh_app_setting_set ffsync secret $secret
2014-11-15 17:24:32 +01:00
# Check depends installation
sudo apt-get install make python-dev python-virtualenv -y
2014-11-15 17:24:32 +01:00
# Check Swap
if [ $(sudo swapon -s | wc -l) = 1 ];
then
2015-04-26 12:39:14 +02:00
# It is NOT possible to setup a swap file on a tmpfs filesystem
mount | grep /tmp | grep tmpfs > /dev/null 2>&1
if [ $? = 1 ];
then
tmp_swap_file=/tmp/ffsync_swapfile
else
tmp_swap_file=/var/cache/ffsync_swapfile
fi
2014-11-15 17:24:32 +01:00
sudo dd if=/dev/zero of=$tmp_swap_file bs=1M count=256
sudo chmod 600 $tmp_swap_file
sudo mkswap $tmp_swap_file
sudo swapon $tmp_swap_file
fi
2016-12-15 21:33:40 +01:00
# Modify assets to take path into account
sudo find ../sources/syncserver/page/sync_files/ -type f -exec sed -i -e "s@media\/img@$path\/media\/img@g" {} \;
2013-12-12 12:12:22 +01:00
# Copy files to the right place
2014-11-15 17:24:32 +01:00
final_path=/opt/yunohost/ffsync
2013-12-12 12:12:22 +01:00
sudo mkdir -p $final_path
sudo cp -a ../sources/* $final_path
2015-02-13 18:10:02 +01:00
sudo cp ../conf/ffsync /etc/init.d/
2015-02-16 11:59:22 +01:00
sudo cp ../conf/ffsync.logrotate /etc/logrotate.d/ffsync
2015-02-20 12:14:45 +01:00
sudo touch /var/log/ffsync.log
2014-11-15 17:24:32 +01:00
# Set permissions to ffsync directory
sudo useradd ffsync -d $final_path
2014-11-15 17:24:32 +01:00
sudo chown ffsync:ffsync -R $final_path
sudo chown ffsync /var/log/ffsync.log
2013-12-12 12:12:22 +01:00
# Modify Nginx configuration file and copy it to Nginx conf directory
2014-11-15 17:24:32 +01:00
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
2013-12-12 12:17:25 +01:00
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/ffsync.conf
2014-12-30 17:43:29 +01:00
sudo cp ../conf/syncserver.ini $final_path/syncserver.ini
2014-11-15 17:24:32 +01:00
sudo sed -i -e "s@ynhbaseurl@$domain$path@g" $final_path/syncserver.ini
2014-12-30 17:30:10 +01:00
sudo sed -i -e "s@changesecret@$secret@g" $final_path/syncserver.ini
sudo sed -i "s/yunouser/$db_user/g" $final_path/syncserver.ini
sudo sed -i "s/yunopass/$db_pwd/g" $final_path/syncserver.ini
sudo sed -i "s/yunobase/$db_user/g" $final_path/syncserver.ini
2016-12-15 21:33:40 +01:00
sudo sed -i -e "s@media\/img@$path\/media\/img@g" $final_path/syncserver/page/sync_files/firefox_sync-bundle.css
sudo sed -i -e "s@media\/img@$path\/media\/img@g" $final_path/syncserver/page/sync_files/responsive-bundle.css
2014-11-15 17:24:32 +01:00
# Init virtualenv
2015-02-13 18:10:02 +01:00
cd $final_path && sudo make build && sudo ./local/bin/easy_install gunicorn
2014-11-15 17:24:32 +01:00
# Disable swapfile
2015-12-28 12:29:14 +01:00
if [ -z ${tmp_swap_file+x} ];
2014-11-15 17:24:32 +01:00
then
sudo swapoff $tmp_swap_file
sudo rm -f $tmp_swap_file
fi
# Fix permission
sudo find $final_path/ -type d -exec chmod 2755 {} \;
sudo find $final_path/ -type f -exec chmod g+r,o+r {} \;
2013-12-12 12:12:22 +01:00
2015-02-13 18:10:02 +01:00
#enable services
sudo chmod +x /etc/init.d/ffsync
sudo update-rc.d ffsync defaults
2015-02-14 19:20:52 +01:00
sudo service ffsync restart
2015-02-14 19:15:33 +01:00
sudo service ffsync restart
2015-02-14 19:22:41 +01:00
sudo service ffsync restart
2015-02-13 18:10:02 +01:00
2013-12-12 12:12:22 +01:00
# Reload Nginx and regenerate SSOwat conf
2015-04-01 11:54:12 +02:00
sudo yunohost app ssowatconf
sudo service nginx restart
sudo yunohost service add ffsync -l /var/log/ffsync.log
ynh_app_setting_set ffsync skipped_uris "/"