Backport of development commit: "Update fabfile to place installation marker"

64c7804611
This commit is contained in:
Roberto Rosario
2012-10-08 00:20:23 -04:00
parent 6ae449f08c
commit 4d4c89bcd7
3 changed files with 19 additions and 2 deletions

View File

@@ -68,3 +68,5 @@ DEFAULT_WEBSERVER = WEB_APACHE
DEFAULT_DATABASE_USERNAME = 'mayan'
DEFAULT_DATABASE_HOST = '127.0.0.1'
DEFAULT_PASSWORD_LENGTH = 10
FABFILE_MARKER = 'fabfile_install'

View File

@@ -94,7 +94,10 @@ def post_install():
setup_environment()
if env.os == OS_UBUNTU:
ubuntu.post_install()
linux.post_install()
elif env.os == OS_FEDORA:
fedora.post_install()
linux.post_install()
elif env.os == OS_DEBIAN:
debian.post_install()
linux.post_install()

View File

@@ -1,16 +1,20 @@
import os
from fabric.api import run, sudo, cd, env, task, settings
from ..literals import FABFILE_MARKER
def delete_mayan():
"""
Delete Mayan EDMS files from an Ubuntu system
Delete Mayan EDMS files from an Linux system
"""
sudo('rm %(virtualenv_path)s -Rf' % env)
def install_mayan():
"""
Install Mayan EDMS on an Ubuntu system
Install Mayan EDMS on an Linux system
"""
with cd(env.install_path):
sudo('virtualenv --no-site-packages %(virtualenv_name)s' % env)
@@ -18,3 +22,11 @@ def install_mayan():
with cd(env.virtualenv_path):
sudo('git clone git://github.com/rosarior/mayan.git %(repository_name)s' % env)
sudo('source bin/activate; pip install -r %(repository_name)s/requirements/production.txt' % env)
def post_install():
"""
Post install process on a Linux systems
"""
fabfile_marker = os.path.join(env.repository_path, FABFILE_MARKER)
sudo('touch %s' % fabfile_marker)