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/install

60 lines
1.8 KiB
Text
Raw Normal View History

2013-11-28 17:44:39 +01:00
#!/bin/bash
# Retrieve arguments
domain=$1
path=$2
# Check domain/path availability
2013-11-30 20:59:09 +01:00
sudo yunohost app checkurl $domain$path -a radicale
2013-11-30 15:31:51 +01:00
sudo yunohost app setting radicale skipped_uris -v "$path"
if [[ ! $? -eq 0 ]]; then
exit 1
fi
2013-11-28 17:44:39 +01:00
2013-11-28 19:24:55 +01:00
# Check depends installation
2014-01-06 09:34:23 +01:00
sudo apt-get install -y python-pip python-virtualenv python-dev libldap2-dev libsasl2-dev libssl-dev uwsgi uwsgi-plugin-python
2013-11-28 17:44:39 +01:00
# Init virtualenv
2014-01-02 17:11:27 +01:00
sudo virtualenv /usr/local/radicale
2013-11-30 15:31:51 +01:00
sudo bash -c "source /usr/local/radicale/bin/activate && pip install radicale python-ldap"
2013-11-28 17:44:39 +01:00
2013-11-28 19:24:55 +01:00
#Configuration Radicale
if [ ! -d /etc/radicale ];
then
2013-11-30 15:31:51 +01:00
sudo mkdir /etc/radicale
2013-11-28 19:24:55 +01:00
fi
2013-11-30 15:31:51 +01:00
sudo cp ../conf/config /etc/radicale/
sudo cp ../conf/logging /etc/radicale/
2014-01-23 17:18:28 +01:00
sudo sed -i "s@CHANGEPATH@$path@g" /etc/radicale/config
2013-11-30 15:31:51 +01:00
# Copy files to the right place
final_path=/var/www/radicale
2014-01-23 17:31:30 +01:00
sudo mkdir -p $final_path/collections
2013-11-30 15:31:51 +01:00
sudo cp ../conf/radicale.wsgi $final_path
2013-11-28 17:44:39 +01:00
# Set permissions to radicale directory
2013-11-30 15:31:51 +01:00
sudo chown -R www-data. $final_path
sudo touch /var/log/radicale
2013-11-30 20:26:40 +01:00
sudo chgrp www-data /var/log/radicale
2013-11-30 15:31:51 +01:00
sudo chmod g+w /var/log/radicale
2013-11-28 17:44:39 +01:00
2013-11-30 15:31:51 +01:00
# Copy uwsgi config
2013-11-30 20:26:40 +01:00
sudo cp ../conf/radicale.ini /etc/uwsgi/apps-available/
sudo ln -s /etc/uwsgi/apps-available/radicale.ini /etc/uwsgi/apps-enabled/
2013-11-28 17:44:39 +01:00
2014-01-06 09:29:29 +01:00
# Modify Nginx configuration file and copy it to Nginx conf directory
2013-11-30 20:26:40 +01:00
sudo sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/radicale.conf
2013-11-30 15:31:51 +01:00
2014-01-06 09:29:29 +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/*
2013-11-30 15:31:51 +01:00
## Reload Nginx and regenerate SSOwat conf
2013-11-30 20:26:40 +01:00
sudo service nginx reload
2013-11-30 20:28:49 +01:00
sudo service uwsgi restart
2013-12-07 20:52:10 +01:00
sudo yunohost app setting radicale skipped_uris -v "/"
2013-11-30 20:59:09 +01:00
sudo yunohost app ssowatconf