Skip to content
Snippets Groups Projects
Commit 75340eb2 authored by Vermaat's avatar Vermaat
Browse files

Use temporary directory in remote deployment

git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@637 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent efaaed66
No related branches found
No related tags found
No related merge requests found
...@@ -31,8 +31,6 @@ def deploy(bootstrap='no'): ...@@ -31,8 +31,6 @@ def deploy(bootstrap='no'):
Additionally, if bootstrap=yes, install all dependencies before Mutalyzer Additionally, if bootstrap=yes, install all dependencies before Mutalyzer
installation, and bootstrap the Mutalyzer configuration afterwards (i.e. installation, and bootstrap the Mutalyzer configuration afterwards (i.e.
create and fill database, add cron script, create cache directory, etc). create and fill database, add cron script, create cache directory, etc).
Todo: Instead of using /tmp/mutalyzer, use mktemp or something.
""" """
# Currently, Fabric only supports task arguments as strings. # Currently, Fabric only supports task arguments as strings.
bootstrap = (bootstrap == 'yes') bootstrap = (bootstrap == 'yes')
...@@ -45,17 +43,17 @@ def deploy(bootstrap='no'): ...@@ -45,17 +43,17 @@ def deploy(bootstrap='no'):
tarball = '%s.tar.gz' % dist tarball = '%s.tar.gz' % dist
# Create a place where we can unzip the source tarball. # Create a place where we can unzip the source tarball.
run('mkdir /tmp/mutalyzer') tempdir = run('mktemp -d').strip()
# Upload the source tarball to the temporary folder on the server. # Upload the source tarball to the temporary folder on the server.
put('dist/%s' % tarball, '/tmp/mutalyzer/%s' % tarball) put('dist/%s' % tarball, tempdir + '/%s' % tarball)
# Go to that directory, unzip and install it. # Go to that directory, unzip and install it.
with cd('/tmp/mutalyzer'): with cd(tempdir):
run('tar xzf %s' % tarball) run('tar xzf %s' % tarball)
# Go to the tarball's contents and do the installation. # Go to the tarball's contents and do the installation.
with cd('/tmp/mutalyzer/%s' % dist): with cd(tempdir + '/%s' % dist):
if bootstrap: if bootstrap:
# Install dependencies. # Install dependencies.
...@@ -75,6 +73,5 @@ def deploy(bootstrap='no'): ...@@ -75,6 +73,5 @@ def deploy(bootstrap='no'):
#run('MUTALYZER_ENV=test nosetests -v') #run('MUTALYZER_ENV=test nosetests -v')
# Now that all is set up, delete the folder again. # Now that all is set up, delete the folder again.
# I don't like to 'sudo rm -Rf' but since there where files created by # (I don't like to 'sudo rm -Rf'.)
# root in this directory, we have to. #sudo('rm -Rf %s' % tempdir)
sudo('rm -Rf /tmp/mutalyzer')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment