Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Valentin Benozillo
slapos
Commits
3cd289f9
Commit
3cd289f9
authored
13 years ago
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use internal librecipe.
parent
cf1bc9c6
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
14 additions
and
15 deletions
+14
-15
setup.py
setup.py
+0
-1
slapos/recipe/erp5/__init__.py
slapos/recipe/erp5/__init__.py
+1
-1
slapos/recipe/erp5testnode/__init__.py
slapos/recipe/erp5testnode/__init__.py
+1
-1
slapos/recipe/helloworld.py
slapos/recipe/helloworld.py
+1
-1
slapos/recipe/kvm/__init__.py
slapos/recipe/kvm/__init__.py
+1
-1
slapos/recipe/libcloud/__init__.py
slapos/recipe/libcloud/__init__.py
+1
-1
slapos/recipe/libcloudrequest.py
slapos/recipe/libcloudrequest.py
+1
-1
slapos/recipe/nbdserver/__init__.py
slapos/recipe/nbdserver/__init__.py
+1
-1
slapos/recipe/nosqltestbed/__init__.py
slapos/recipe/nosqltestbed/__init__.py
+1
-1
slapos/recipe/proactive/__init__.py
slapos/recipe/proactive/__init__.py
+1
-1
slapos/recipe/sheepdogtestbed/__init__.py
slapos/recipe/sheepdogtestbed/__init__.py
+1
-1
slapos/recipe/siptester/__init__.py
slapos/recipe/siptester/__init__.py
+1
-1
slapos/recipe/slaprunner/__init__.py
slapos/recipe/slaprunner/__init__.py
+1
-1
slapos/recipe/testnode/__init__.py
slapos/recipe/testnode/__init__.py
+1
-1
slapos/recipe/xwiki/__init__.py
slapos/recipe/xwiki/__init__.py
+1
-1
No files found.
setup.py
View file @
3cd289f9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/erp5/__init__.py
View file @
3cd289f9
...
...
@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
binascii
import
os
import
pkg_resources
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/erp5testnode/__init__.py
View file @
3cd289f9
...
...
@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
os
import
pkg_resources
import
zc.buildout
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/helloworld.py
View file @
3cd289f9
...
...
@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
class
Recipe
(
BaseSlapRecipe
):
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/kvm/__init__.py
View file @
3cd289f9
...
...
@@ -26,7 +26,7 @@
##############################################################################
import
os
import
sys
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
subprocess
import
binascii
import
random
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/libcloud/__init__.py
View file @
3cd289f9
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
os
import
sys
import
zc.buildout
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/libcloudrequest.py
View file @
3cd289f9
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
zc.buildout
class
Recipe
(
BaseSlapRecipe
):
def
_install
(
self
):
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/nbdserver/__init__.py
View file @
3cd289f9
...
...
@@ -26,7 +26,7 @@
##############################################################################
import
os
import
binascii
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
pkg_resources
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/nosqltestbed/__init__.py
View file @
3cd289f9
...
...
@@ -29,7 +29,7 @@ import os
import
urllib
import
urllib2
import
pkg_resources
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
class
NoSQLTestBed
(
BaseSlapRecipe
):
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/proactive/__init__.py
View file @
3cd289f9
...
...
@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
os
import
pkg_resources
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/sheepdogtestbed/__init__.py
View file @
3cd289f9
...
...
@@ -29,7 +29,7 @@ import os
import
urllib
import
urllib2
import
pkg_resources
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
class
SheepDogTestBed
(
BaseSlapRecipe
):
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/siptester/__init__.py
View file @
3cd289f9
import
os
import
pkg_resources
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
class
SipTesterRecipe
(
BaseSlapRecipe
):
def
__init__
(
self
,
buildout
,
name
,
options
):
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/slaprunner/__init__.py
View file @
3cd289f9
...
...
@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
os
import
pkg_resources
import
sys
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/testnode/__init__.py
View file @
3cd289f9
...
...
@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
os
import
pkg_resources
import
zc.buildout
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/xwiki/__init__.py
View file @
3cd289f9
...
...
@@ -24,7 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
slapos.
lib.recipe.BaseSlapR
ecipe
import
BaseSlapRecipe
from
slapos.
recipe.libr
ecipe
import
BaseSlapRecipe
import
os
import
shutil
import
pkg_resources
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment