Skip to content

Commit

Permalink
adding master and staging branches for deploying to s-pacifico
Browse files Browse the repository at this point in the history
  • Loading branch information
bethanycarlson committed Jul 19, 2015
1 parent 9360cb1 commit 561c96c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@ def production():
env.hosts = env.hosts = ["%s:%s" % (hostname,port)]
env.branch = 'master'

def production_pacifico_master():
env.user = 'developer'
hostname = 's-pacifico.coas.oregonstate.edu'
port = 22
env.hosts = env.hosts = ["%s:%s" % (hostname,port)]
env.branch = 'master'

def production_pacifico_staging():
env.user = 'developer'
hostname = 's-pacifico.coas.oregonstate.edu'
port = 22
env.hosts = env.hosts = ["%s:%s" % (hostname,port)]
env.branch = 'staging'

def install_prereqs():
#handle selinux
Expand Down

0 comments on commit 561c96c

Please sign in to comment.