You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.6 KiB

11 years ago
#!/bin/bash
# Retrieve arguments
domain=$1
path=$2
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a ffsync
if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Generate random passworid
db_pwd=$(head -c 8 /dev/urandom | sha1sum | cut -d " " -f1)
11 years ago
# Use 'FSyncMS' as database name and user
db_user=ffsync
# Initialize database and store mysql password for upgrade
10 years ago
sudo yunohost app initdb $db_user -p $db_pwd
11 years ago
sudo yunohost app setting ffsync mysqlpwd -v $db_pwd
10 years ago
# Check depends installation
10 years ago
sudo apt-get install git-core make python-dev python-virtualenv uwsgi uwsgi-core uwsgi-plugin-python
10 years ago
# Check Swap
tmp_swap_file=/tmp/ffsync_swapfile
if [ $(sudo swapon -s | wc -l) = 1 ];
then
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
11 years ago
# Copy files to the right place
10 years ago
final_path=/opt/yunohost/ffsync
11 years ago
sudo mkdir -p $final_path
sudo cp -a ../sources/* $final_path
sudo cp ../conf/ffsync /etc/init.d/
10 years ago
# Set permissions to ffsync directory
sudo useradd ffsync -d $final_path
sudo chown ffsync:ffsync -R $final_path
11 years ago
10 years ago
# Copy uwsgi config
sudo cp ../conf/ffsync.ini /etc/uwsgi/apps-available/
sudo ln -s /etc/uwsgi/apps-available/ffsync.ini /etc/uwsgi/apps-enabled/
11 years ago
# Modify Nginx configuration file and copy it to Nginx conf directory
10 years ago
secret=$(head -c 20 /dev/urandom | sha1sum | cut -d " " -f1)
10 years ago
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
11 years ago
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/ffsync.conf
10 years ago
sudo cp ../conf/syncserver.ini $final_path/syncserver.ini
10 years ago
sudo sed -i -e "s@ynhbaseurl@$domain$path@g" $final_path/syncserver.ini
10 years ago
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
10 years ago
# Init virtualenv
cd $final_path && sudo make build && sudo ./local/bin/easy_install gunicorn
10 years ago
# Disable swapfile
if [ -f $tmp_swap_file ];
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 {} \;
sudo usermod -a -G ffsync www-data
11 years ago
#enable services
sudo chmod +x /etc/init.d/ffsync
sudo update-rc.d ffsync defaults
sudo service ffsync start
11 years ago
# Reload Nginx and regenerate SSOwat conf
10 years ago
sudo service uwsgi restart
11 years ago
sudo service nginx reload
10 years ago
sudo yunohost service add uwsgi -l /var/log/uwsgi/app/ffsync.log
11 years ago
sudo yunohost app setting ffsync skipped_uris -v "/"
sudo yunohost app ssowatconf