firefox sync with gunicorn

This commit is contained in:
Adrien Beudin
2015-02-13 18:10:02 +01:00
parent 23a0192c74
commit c53e73afd6
11 changed files with 201 additions and 25 deletions

View File

@@ -10,8 +10,8 @@ if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Generate random password
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
# Generate random passworid
db_pwd=$(head -c 8 /dev/urandom | sha1sum | cut -d " " -f1)
# Use 'FSyncMS' as database name and user
db_user=ffsync
@@ -37,6 +37,7 @@ fi
final_path=/opt/yunohost/ffsync
sudo mkdir -p $final_path
sudo cp -a ../sources/* $final_path
sudo cp ../conf/ffsync /etc/init.d/
# Set permissions to ffsync directory
sudo useradd ffsync -d $final_path
@@ -59,7 +60,7 @@ sudo sed -i "s/yunopass/$db_pwd/g" $final_path/syncserver.ini
sudo sed -i "s/yunobase/$db_user/g" $final_path/syncserver.ini
# Init virtualenv
cd $final_path && sudo make build
cd $final_path && sudo make build && sudo ./local/bin/easy_install gunicorn
# Disable swapfile
if [ -f $tmp_swap_file ];
@@ -73,6 +74,11 @@ 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
#enable services
sudo chmod +x /etc/init.d/ffsync
sudo update-rc.d ffsync defaults
sudo service ffsync start
# Reload Nginx and regenerate SSOwat conf
sudo service uwsgi restart
sudo service nginx reload