Skip to content

Commit

Permalink
upload screenrc if available
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaussion committed Mar 13, 2016
1 parent 653692e commit 873426c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deployment/fabfile.py
Expand Up @@ -585,6 +585,11 @@ def node_install(cn=def_cn,inst_type_idx=def_inst_type,idn=0,
run('mkdir ~/.aws')
put(aws_file, '~/.aws/config')

# If user has screen file, take it too!
s_file = os.path.expanduser('~/.screenrc')
if os.path.exists(s_file):
put(s_file, '~/.screenrc')

# Now virtualenv stuffs
run('pip install virtualenvwrapper')
run('mkdir ~/.pyvirtualenvs')
Expand Down

0 comments on commit 873426c

Please sign in to comment.