mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
13 lines
273 B
Python
13 lines
273 B
Python
from fabric.api import env, cd, sudo, run
|
|
|
|
env.hosts = ['sites.lolnet.lan']
|
|
|
|
|
|
def deploy():
|
|
with cd('/home//www/ihatemoney.org/code'):
|
|
sudo('git pull', user="www-data")
|
|
sudo('supervisorctl restart ihatemoney.org')
|
|
|
|
|
|
def whoami():
|
|
run('/usr/bin/whoami')
|