Splits out staging. Finishes up on deploy.
authordsc <dsc@less.ly>
Wed, 9 May 2012 09:02:45 +0000 (02:02 -0700)
committerdsc <dsc@less.ly>
Wed, 9 May 2012 09:02:45 +0000 (02:02 -0700)
fabfile/stages.py
fabfile/util.py

index ebada51..aeb2020 100644 (file)
@@ -34,7 +34,6 @@ def stage():
     env.deploy_env = 'stage'
     env.hosts      = ['less.ly']
     env.target_dir = '/home/wmf/projects/kraken-ui'
-    env.user       = 'wmf'
     env.owner      = 'wmf'
     env.group      = 'www'
 
index befa087..736cbb4 100644 (file)
@@ -8,7 +8,7 @@ from functools import wraps
 from fabric.api import *
 from fabric.colors import white, blue, cyan, green, yellow, red, magenta
 
-__all__ = ('quietly', 'msg', 'make_wrapper', 'coke', 'update_version',)
+__all__ = ('quietly', 'msg', 'coke', 'update_version',)
 
 
 @contextmanager