Commit d27a26a2 authored by Rafael Monnerat's avatar Rafael Monnerat

Copy Wordpress application

parent 63c56d57
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
############################################################################## ##############################################################################
from slapos.recipe.librecipe import GenericBaseRecipe from slapos.recipe.librecipe import GenericBaseRecipe
from binascii import b2a_uu as uuencode from binascii import b2a_uu as uuencode
import shutil
import binascii import binascii
import os import os
import sys import sys
...@@ -50,6 +51,11 @@ class Recipe(GenericBaseRecipe): ...@@ -50,6 +51,11 @@ class Recipe(GenericBaseRecipe):
index_page_id = self.options.get("index-page-id", "index.php"), index_page_id = self.options.get("index-page-id", "index.php"),
php_cgi_address = self.options["php-cgi-address"] php_cgi_address = self.options["php-cgi-address"]
) )
# Copy application
if not os.path.exists(self.options['nginx-root']):
shutil.copytree(self.options['source'],
self.options['nginx-root'])
# Configs # Configs
self.createFile( self.createFile(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment