mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
41239cb47e
Former-commit-id: b97655ebde
45 lines
1.3 KiB
Text
45 lines
1.3 KiB
Text
# Retrieve arguments
|
|
domain=$1
|
|
path=$2
|
|
final_path=/var/www/seafile
|
|
seafile_version=3.1.1
|
|
|
|
# Check domain/path availability
|
|
sudo yunohost app checkurl $domain$path -a seafile
|
|
if [[ ! $? -eq 0 ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Check dependencies
|
|
sudo apt-get install -y python2.7 python-setuptools python-simplejson python-imaging python-mysqldb
|
|
|
|
# Copy files to the right place
|
|
sudo mkdir -p $final_path
|
|
sudo mkdir -p $final_path/installed
|
|
sudo mkdir -p $final_path/seafile-data
|
|
sudo mkdir -p $final_path/seafile-server-$seafile_version
|
|
sudo tar xvzf ../sources/'seafile-server_'$seafile_version'_x86-64.tar'
|
|
sudo mv ../sources/seafile-server-$seafile_version/* $final_path/seafile-server-$seafile_version
|
|
sudo mv ../sources/'seafile-server_'$seafile_version'_x86-64.tar' $final_path/installed
|
|
|
|
# Set permissions to seafile directory
|
|
sudo chown -R www-data: $final_path
|
|
|
|
# Run install script
|
|
|
|
|
|
# Start Seafile Server
|
|
|
|
|
|
# Add Seafile Server to startup
|
|
# TODO
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
|
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/seafile.conf
|
|
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
sudo service nginx reload
|
|
sudo yunohost app ssowatconf
|