From 8353004cb023ccf9ffb81e3c2d02733b6f0ef075 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Wed, 24 Dec 2014 18:22:43 +0530 Subject: [PATCH] Fixed Roundcube paths --- ee/cli/plugins/stack.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ee/cli/plugins/stack.py b/ee/cli/plugins/stack.py index 5920111a..ac735745 100644 --- a/ee/cli/plugins/stack.py +++ b/ee/cli/plugins/stack.py @@ -423,10 +423,10 @@ class EEStackController(CementBaseController): if any('/tmp/roundcube.tar.gz' == x[1] for x in packages): # Extract RoundCubemail EEExtract.extract('/tmp/roundcube.tar.gz', '/tmp/') - if not os.path.exists('/var/www/22222/htdocs/'): - os.makedirs('/var/www/22222/htdocs/') + if not os.path.exists('/var/www/roundcubemail'): + os.makedirs('/var/www/roundcubemail/') shutil.move('/tmp/roundcubemail-1.0.4/', - '/var/www/22222/htdocs/roundcubemail/') + '/var/www/roundcubemail/htdocs') # Configure roundcube database rc_passwd = ''.join(random.sample(string.ascii_letters, 8))