1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/radicale_ynh.git synced 2024-09-03 20:16:14 +02:00
radicale_ynh/scripts/upgrade

31 lines
984 B
Text
Raw Normal View History

2013-12-11 18:29:43 +01:00
#!/bin/bash
2014-05-29 11:36:34 +02:00
# Check depends installation
sudo apt-get install -y python-pip python-virtualenv python-dev libldap2-dev libsasl2-dev libssl-dev uwsgi uwsgi-plugin-python
# Upgrade pip packages
sudo bash -c "source /opt/yunohost/radicale/bin/activate && pip install radicale python-ldap --upgrade"
# Radicale configuration
sudo cp ../conf/config /etc/radicale/
sudo cp ../conf/logging /etc/radicale/
sudo sed -i "s@CHANGEPATH@$path@g" /etc/radicale/config
# Copy files to the right place
final_path=/var/www/radicale
sudo mkdir -p $final_path/collections
sudo cp ../conf/radicale.wsgi $final_path
2014-01-06 09:38:16 +01:00
# Fix permission
sudo chmod 755 /etc/radicale/
sudo find /usr/local/radicale/ -type d -exec chmod 2755 {} \;
sudo find /usr/local/radicale/ -type f -exec chmod g+r,o+r {} \;
sudo chmod 644 /etc/radicale/*
2014-05-29 11:36:34 +02:00
sudo yunohost app setting radicale skipped_uris -v "/"
sudo yunohost app ssowatconf
2014-01-06 09:38:16 +01:00
sudo service uwsgi stop
sudo killall uwsgi
sudo service uwsgi start
sudo service nginx reload