parent
23a0192c74
commit
c53e73afd6
@ -0,0 +1,64 @@
|
|||||||
|
#!/bin/bash -x
|
||||||
|
# /etc/init.d/sync
|
||||||
|
# version 0.1 2013-03-12 (YYYY-MM-DD)
|
||||||
|
|
||||||
|
### BEGIN INIT INFO
|
||||||
|
# Provides: sync
|
||||||
|
# Required-Start: $local_fs $remote_fs
|
||||||
|
# Required-Stop: $local_fs $remote_fs
|
||||||
|
# Should-Start: $network
|
||||||
|
# Should-Stop: $network
|
||||||
|
# Default-Start: 2 3 4 5
|
||||||
|
# Default-Stop: 0 1 6
|
||||||
|
# Short-Description: Mozilla Sync server
|
||||||
|
# Description: Starts the mozilla sync server
|
||||||
|
### END INIT INFO
|
||||||
|
|
||||||
|
# Source function library.
|
||||||
|
#. /etc/rc.d/init.d/functions
|
||||||
|
|
||||||
|
prog=sync
|
||||||
|
SYNC_USER=ffsync
|
||||||
|
SYNC_HOME=/opt/yunohost/ffsync
|
||||||
|
CPU_COUNT=2
|
||||||
|
pidfile=/tmp/sync.pid
|
||||||
|
lockfile=/var/run/mozilla/sync.lock
|
||||||
|
conffile=${SYNC_HOME}/syncserver.ini
|
||||||
|
GUNICORN=${SYNC_HOME}/local/bin/gunicorn_paster
|
||||||
|
GUNICORN_ARGS="--access-logfile /var/log/ffsync.log --daemon -p $pidfile"
|
||||||
|
#INVOCATION="$GUNICORN $GUNICORN_ARGS $conffile"
|
||||||
|
|
||||||
|
start () {
|
||||||
|
echo -n "Starting $prog"
|
||||||
|
start-stop-daemon --start -c ${SYNC_USER} --exec $GUNICORN -- $GUNICORN_ARGS $conffile
|
||||||
|
RETVAL=$?
|
||||||
|
echo
|
||||||
|
[ $RETVAL = 0 ] && touch ${lockfile}
|
||||||
|
return $RETVAL
|
||||||
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
echo "Stopping $prog"
|
||||||
|
start-stop-daemon --stop --quiet --oknodo --pidfile ${pidfile}
|
||||||
|
#log_end_msg $?
|
||||||
|
rm -f ${pidfile}
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
start)
|
||||||
|
start
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
stop
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
stop
|
||||||
|
start
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo $"Usage: $prog {start|stop|restart|help}"
|
||||||
|
RETVAL=2
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit $RETVAL
|
||||||
|
|
@ -0,0 +1,56 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Retrieve arguments
|
||||||
|
domain=$(sudo yunohost app setting searx domain)
|
||||||
|
path=$(sudo yunohost app setting searx path)
|
||||||
|
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# Copy files to the right place
|
||||||
|
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
|
||||||
|
sudo chown ffsync:ffsync -R $final_path
|
||||||
|
|
||||||
|
# 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/ffsync.conf
|
||||||
|
|
||||||
|
# Init virtualenv
|
||||||
|
cd $final_path && sudo make build && sudo ./local/bin/easy_install gunicorn
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
#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 nginx reload
|
||||||
|
sudo yunohost app setting ffsync skipped_uris -v "/"
|
||||||
|
sudo yunohost app ssowatconf
|
@ -1,2 +1,9 @@
|
|||||||
*~
|
*.pyc
|
||||||
|
*.mako.py
|
||||||
|
local
|
||||||
|
*.egg-info
|
||||||
*.swp
|
*.swp
|
||||||
|
\.coverage
|
||||||
|
*~
|
||||||
|
nosetests.xml
|
||||||
|
syncserver.db
|
||||||
|
@ -0,0 +1,20 @@
|
|||||||
|
language: python
|
||||||
|
|
||||||
|
python:
|
||||||
|
- "2.6"
|
||||||
|
- "2.7"
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
email:
|
||||||
|
- rfkelly@mozilla.com
|
||||||
|
irc:
|
||||||
|
channels:
|
||||||
|
- "irc.mozilla.org#services-dev"
|
||||||
|
use_notice: false
|
||||||
|
skip_join: false
|
||||||
|
|
||||||
|
install:
|
||||||
|
- make build
|
||||||
|
|
||||||
|
script:
|
||||||
|
- make test
|
Loading…
Reference in new issue