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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joanne Hugé
slapos
Commits
add12eb2
Commit
add12eb2
authored
May 26, 2011
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge slapos.recipe.kvm as slapos.recipebox:kvm
parent
71632d35
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
1 addition
and
137 deletions
+1
-137
setup.py
setup.py
+1
-0
slapos/recipe/README.kvm.txt
slapos/recipe/README.kvm.txt
+0
-0
slapos/recipe/kvm/__init__.py
slapos/recipe/kvm/__init__.py
+0
-0
slapos/recipe/kvm/template/kvm_controller_run.in
slapos/recipe/kvm/template/kvm_controller_run.in
+0
-0
slapos/recipe/kvm/template/kvm_run.in
slapos/recipe/kvm/template/kvm_run.in
+0
-0
slapos/recipe/kvm/template/slapmonitor_run.in
slapos/recipe/kvm/template/slapmonitor_run.in
+0
-0
slapos/recipe/kvm/template/slapreport_run.in
slapos/recipe/kvm/template/slapreport_run.in
+0
-0
slapos/slapos.recipe.kvm/CHANGES.txt
slapos/slapos.recipe.kvm/CHANGES.txt
+0
-88
slapos/slapos.recipe.kvm/MANIFEST.in
slapos/slapos.recipe.kvm/MANIFEST.in
+0
-2
slapos/slapos.recipe.kvm/setup.py
slapos/slapos.recipe.kvm/setup.py
+0
-35
slapos/slapos.recipe.kvm/src/slapos/__init__.py
slapos/slapos.recipe.kvm/src/slapos/__init__.py
+0
-6
slapos/slapos.recipe.kvm/src/slapos/recipe/__init__.py
slapos/slapos.recipe.kvm/src/slapos/recipe/__init__.py
+0
-6
No files found.
setup.py
View file @
add12eb2
...
...
@@ -49,5 +49,6 @@ setup(name=name,
'erp5testnode = slapos.recipe.erp5testnode:Recipe'
,
'helloworld = slapos.recipe.helloworld:Recipe'
,
'java = slapos.recipe.java:Recipe'
,
'kvm = slapos.recipe.kvm:Recipe'
,
]},
)
slapos/
slapos.recipe.kvm/README
.txt
→
slapos/
recipe/README.kvm
.txt
View file @
add12eb2
File moved
slapos/
slapos.recipe.kvm/src/slapos/
recipe/kvm/__init__.py
→
slapos/recipe/kvm/__init__.py
View file @
add12eb2
File moved
slapos/
slapos.recipe.kvm/src/slapos/
recipe/kvm/template/kvm_controller_run.in
→
slapos/recipe/kvm/template/kvm_controller_run.in
View file @
add12eb2
File moved
slapos/
slapos.recipe.kvm/src/slapos/
recipe/kvm/template/kvm_run.in
→
slapos/recipe/kvm/template/kvm_run.in
View file @
add12eb2
File moved
slapos/
slapos.recipe.kvm/src/slapos/
recipe/kvm/template/slapmonitor_run.in
→
slapos/recipe/kvm/template/slapmonitor_run.in
View file @
add12eb2
File moved
slapos/
slapos.recipe.kvm/src/slapos/
recipe/kvm/template/slapreport_run.in
→
slapos/recipe/kvm/template/slapreport_run.in
View file @
add12eb2
File moved
slapos/slapos.recipe.kvm/CHANGES.txt
deleted
100644 → 0
View file @
71632d35
Changelog
=========
1.2 (unreleased)
----------------
1.0.14 (2011-02-01)
-------------------
- Remove cpu parameter which is not supported
1.0.13 (2011-02-01)
-------------------
- KVM size parameters are provided by the instance profile
1.0.12 (2011-02-01)
-------------------
- Generate random mac address
1.0.11 (2011-01-18)
-------------------
- Updated recipe to the new BaseSlapRecipe.py
[Davide Tammaro]
1.0.10 (2011-01-10)
-------------------
- Remove KVM dhcp server
1.0.9 (2010-12-28)
------------------
- Wait the QMP command before starting
1.0.8 (2010-12-28)
------------------
- Wait for KVM to be started
1.0.7 (2010-11-30)
------------------
- Add controller template
1.0.6 (2010-11-29)
------------------
- Protect vnc session with a password
1.0.5 (2010-11-24)
------------------
- Write on disk image
- Add bios menu
- Create a disk image detected as virtual disk
- Use latest slapos.librecipe API
- Use nbd to access the cdrom image
1.0.3 (2010-10-26)
------------------
- Add MANIFEST.in
- Remove ssh feature, with is not compatible with the slapos design
- Simplify runner generation
- Adding python gzip version instead of linux gzip one
1.0.2 (2010-10-25)
------------------
- Slapify kvm installation [Charles Villette]
- Adding tests to configuration options
- Adding memory limit support
- Adding configuration wrapper
- Adding new configuration options for kvm __init__
- Adding non-hardcoded qemu path for kvm launch
- Changing names to slapos.recipe instead of kvm.recipe
1.0.1 (2010-05-10)
-------------------
- Reimplemented ssh.py to use SSHClient.
[Rafael Monnerat]
1.0 (2010-05-04)
----------------
- Initial Release
[Rafael Monnerat]
slapos/slapos.recipe.kvm/MANIFEST.in
deleted
100644 → 0
View file @
71632d35
include CHANGES.txt
recursive-include src/slapos/recipe/kvm *.in
slapos/slapos.recipe.kvm/setup.py
deleted
100644 → 0
View file @
71632d35
from
setuptools
import
setup
,
find_packages
name
=
"slapos.recipe.kvm"
version
=
'1.2-dev'
def
read
(
name
):
return
open
(
name
).
read
()
long_description
=
(
read
(
'README.txt'
)
+
'
\
n
'
+
read
(
'CHANGES.txt'
)
)
setup
(
name
=
name
,
version
=
version
,
description
=
"ZC Buildout recipe for create a kvm setup for a image"
,
long_description
=
long_description
,
license
=
"GPLv3"
,
keywords
=
"buildout kvm"
,
classifiers
=
[
"Framework :: Buildout :: Recipe"
,
"Programming Language :: Python"
,
],
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
include_package_data
=
True
,
install_requires
=
[
'zc.recipe.egg'
,
'setuptools'
,
'slapos.lib.recipe'
,
],
namespace_packages
=
[
'slapos'
,
'slapos.recipe'
],
entry_points
=
{
'zc.buildout'
:
[
'default = %s:Recipe'
%
name
]},
)
slapos/slapos.recipe.kvm/src/slapos/__init__.py
deleted
100644 → 0
View file @
71632d35
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try
:
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
except
ImportError
:
from
pkgutil
import
extend_path
__path__
=
extend_path
(
__path__
,
__name__
)
slapos/slapos.recipe.kvm/src/slapos/recipe/__init__.py
deleted
100644 → 0
View file @
71632d35
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try
:
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
except
ImportError
:
from
pkgutil
import
extend_path
__path__
=
extend_path
(
__path__
,
__name__
)
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