Commit 3cd289f9 authored by Łukasz Nowak's avatar Łukasz Nowak

Use internal librecipe.

parent cf1bc9c6
......@@ -34,7 +34,6 @@ setup(name=name,
'lxml', # for full blown python interpreter
'netaddr', # to manipulate on IP addresses
'setuptools', # namespaces
'slapos.lib.recipe', # makes instantiation recipes simpler
'slapos.slap', # uses internally
# 'slapos.tool.cloudmgr', # needed for libclouds # disabled, as not available
'xml_marshaller', # need to communication with slapgrid
......
......@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import binascii
import os
import pkg_resources
......
......@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import os
import pkg_resources
import zc.buildout
......
......@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
class Recipe(BaseSlapRecipe):
......
......@@ -26,7 +26,7 @@
##############################################################################
import os
import sys
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import subprocess
import binascii
import random
......
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import os
import sys
import zc.buildout
......
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import zc.buildout
class Recipe(BaseSlapRecipe):
def _install(self):
......
......@@ -26,7 +26,7 @@
##############################################################################
import os
import binascii
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import pkg_resources
......
......@@ -29,7 +29,7 @@ import os
import urllib
import urllib2
import pkg_resources
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
class NoSQLTestBed(BaseSlapRecipe):
......
......@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import os
import pkg_resources
......
......@@ -29,7 +29,7 @@ import os
import urllib
import urllib2
import pkg_resources
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
class SheepDogTestBed(BaseSlapRecipe):
......
import os
import pkg_resources
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
class SipTesterRecipe(BaseSlapRecipe):
def __init__(self, buildout, name, options):
......
......@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import os
import pkg_resources
import sys
......
......@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import os
import pkg_resources
import zc.buildout
......
......@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from slapos.lib.recipe.BaseSlapRecipe import BaseSlapRecipe
from slapos.recipe.librecipe import BaseSlapRecipe
import os
import shutil
import pkg_resources
......
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