guts: add a fabfile to save my fingers
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 01 Jul 2010 19:47:48 -0400 |
parents |
33f5127b20fb
|
children |
014df093430e
|
branches/tags |
(none) |
files |
fabfile.py |
Changes
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/fabfile.py Thu Jul 01 19:47:48 2010 -0400
@@ -0,0 +1,15 @@
+from __future__ import with_statement
+
+from fabric.api import *
+
+def demo():
+ env.hosts += ['stevelosh.com:22779']
+ env.data_repo = '/var/www/review.stevelosh.com/data'
+ env.tool_repo = '/var/www/review.stevelosh.com/hg-review'
+ env.supervisord_program = 'gunicorn-review-hg-review'
+
+def deploy():
+ run('hg -R %s pull' % env.data_repo)
+ run('hg -R %s pull' % env.tool_repo)
+ sudo('supervisorctl restart %s' % env.supervisord_program)
+