1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

update the fabric script with the last arch

This commit is contained in:
Alexis Metaireau 2012-09-02 14:08:05 +02:00
parent 6a544855d7
commit 2c1fe198e5

14
fabfile.py vendored
View file

@ -1,13 +1,13 @@
from fabric.api import *
from fabric.api import env, cd, sudo, run
env.hosts = ['sites.lolnet.lan']
env.hosts = ['lolnet.org:20002']
env.shell = "/usr/local/bin/bash -c"
env.path = "/usr/local/bin/:/usr/bin/"
def deploy():
with cd('/usr/local/www/notmyidea.org/ihatemoney'):
sudo('git pull', user="www")
sudo('supervisorctl restart ihatemoney')
with cd('/home//www/ihatemoney.org/code'):
sudo('git pull', user="www-data")
sudo('supervisorctl restart ihatemoney.org')
def whoami():
run('/usr/bin/whoami')