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
a9e15019
Commit
a9e15019
authored
Jun 06, 2011
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into cloudooo
parents
3edd8fa9
c979d3c0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
105 additions
and
101 deletions
+105
-101
component/python-2.6/buildout.cfg
component/python-2.6/buildout.cfg
+4
-3
component/subversion/buildout.cfg
component/subversion/buildout.cfg
+2
-2
setup.py
setup.py
+1
-1
slapos/recipe/erp5testnode/__init__.py
slapos/recipe/erp5testnode/__init__.py
+14
-26
slapos/recipe/erp5testnode/testnode.py
slapos/recipe/erp5testnode/testnode.py
+74
-58
software/erp5testnode/instance.cfg
software/erp5testnode/instance.cfg
+1
-1
software/erp5testnode/software.cfg
software/erp5testnode/software.cfg
+9
-10
No files found.
component/python-2.6/buildout.cfg
View file @
a9e15019
[buildout]
[buildout]
# XXX: Extends shall not jump out of software
# XXX: Extends shall not jump out of software
extends =
extends =
...
@@ -27,12 +28,12 @@ recipe = hexagonit.recipe.cmmi
...
@@ -27,12 +28,12 @@ recipe = hexagonit.recipe.cmmi
# other settings in this part if we don't set it explicitly here.
# other settings in this part if we don't set it explicitly here.
prefix = ${buildout:parts-directory}/${:_buildout_section_name_}
prefix = ${buildout:parts-directory}/${:_buildout_section_name_}
version = 2.6
version = 2.6
package_version = ${:version}.
6
package_version = ${:version}.
7
executable = ${:prefix}/bin/python${:version}
executable = ${:prefix}/bin/python${:version}
url =
url =
http://python.org/ftp/python/${:package_version}/Python-${:package_version}.t
gz
http://python.org/ftp/python/${:package_version}/Python-${:package_version}.t
ar.bz2
md5sum =
b2f209df270a33315e62c1ffac1937f0
md5sum =
d40ef58ed88438a870bbeb0ac5d4217b
patch-options = -p1
patch-options = -p1
patches =
patches =
${python-2.6.6-no_system_inc_dirs.patch:location}/${python-2.6.6-no_system_inc_dirs.patch:filename}
${python-2.6.6-no_system_inc_dirs.patch:location}/${python-2.6.6-no_system_inc_dirs.patch:filename}
...
...
component/subversion/buildout.cfg
View file @
a9e15019
...
@@ -24,8 +24,8 @@ md5sum = 8d911ec2422dc4c08a00693ac915a07a
...
@@ -24,8 +24,8 @@ md5sum = 8d911ec2422dc4c08a00693ac915a07a
[subversion]
[subversion]
recipe = hexagonit.recipe.cmmi
recipe = hexagonit.recipe.cmmi
url = http://subversion.tigris.org/downloads/subversion-1.6.1
6
.tar.bz2
url = http://subversion.tigris.org/downloads/subversion-1.6.1
7
.tar.bz2
md5sum =
32f25a6724559fe8691d1f57a63f636e
md5sum =
81e5dc5beee4b3fc025ac70c0b6caa14
patches =
patches =
${subversion-1.6.0-disable_linking_against_unneeded_libraries:location}/${subversion-1.6.0-disable_linking_against_unneeded_libraries:filename}
${subversion-1.6.0-disable_linking_against_unneeded_libraries:location}/${subversion-1.6.0-disable_linking_against_unneeded_libraries:filename}
configure-options =
configure-options =
...
...
setup.py
View file @
a9e15019
...
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
...
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import
glob
import
glob
import
os
import
os
version
=
'0.2-dev'
version
=
'0.2-dev
1
'
name
=
'slapos.cookbook'
name
=
'slapos.cookbook'
long_description
=
open
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
long_description
=
open
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
open
(
"CHANGES.txt"
).
read
()
+
"
\
n
"
open
(
"CHANGES.txt"
).
read
()
+
"
\
n
"
...
...
slapos/recipe/erp5testnode/__init__.py
View file @
a9e15019
...
@@ -83,36 +83,25 @@ class Recipe(BaseSlapRecipe):
...
@@ -83,36 +83,25 @@ class Recipe(BaseSlapRecipe):
git_binary
=
self
.
options
[
'git_binary'
],
git_binary
=
self
.
options
[
'git_binary'
],
software_root
=
CONFIG
[
'software_root'
],
software_root
=
CONFIG
[
'software_root'
],
working_directory
=
CONFIG
[
'working_directory'
],
working_directory
=
CONFIG
[
'working_directory'
],
vcs_repository
=
self
.
parameter_dict
.
get
(
'vcs_repository'
),
vcs_repository
_list
=
eval
(
self
.
parameter_dict
.
get
(
'vcs_repository_list'
),
),
node_quantity
=
self
.
parameter_dict
.
get
(
'node_quantity'
,
'1'
),
node_quantity
=
self
.
parameter_dict
.
get
(
'node_quantity'
,
'1'
),
branch
=
self
.
parameter_dict
.
get
(
'branch'
,
None
),
test_suite_master_url
=
self
.
parameter_dict
.
get
(
test_suite_master_url
=
self
.
parameter_dict
.
get
(
'test_suite_master_url'
,
None
),
'test_suite_master_url'
,
None
),
test_suite
_name
=
self
.
parameter_dict
.
get
(
'test_suite_nam
e'
),
test_suite
=
self
.
parameter_dict
.
get
(
'test_suit
e'
),
test_suite_title
=
self
.
parameter_dict
.
get
(
'test_suite_title'
),
test_suite_title
=
self
.
parameter_dict
.
get
(
'test_suite_title'
),
test_node_title
=
self
.
parameter_dict
.
get
(
'test_node_title'
),
project_title
=
self
.
parameter_dict
.
get
(
'project_title'
),
bin_directory
=
self
.
bin_directory
,
bin_directory
=
self
.
bin_directory
,
foo
=
'bar'
,
# botenvironemnt is splittable string of key=value to substitute
# botenvironemnt is splittable string of key=value to substitute
# environment of running bot
# environment of running bot
bot_environment
=
self
.
parameter_dict
.
get
(
'bot_environment'
,
''
),
bot_environment
=
self
.
parameter_dict
.
get
(
'bot_environment'
,
''
),
partition_reference
=
CONFIG
[
'partition_reference'
],
partition_reference
=
CONFIG
[
'partition_reference'
],
environment
=
dict
(
PATH
=
os
.
environ
[
'PATH'
]),
environment
=
dict
(
PATH
=
os
.
environ
[
'PATH'
]),
vcs_authentication_list
=
self
.
parameter_dict
.
get
(
'vcs_authentication_list'
)
)
)
]))
]))
def
installLocalSvn
(
self
):
svn_dict
=
dict
(
svn_binary
=
self
.
options
[
'svn_binary'
])
svn_dict
.
update
(
self
.
parameter_dict
)
self
.
_writeExecutable
(
os
.
path
.
join
(
self
.
bin_directory
,
'svn'
),
"""
\
#!/bin/sh
%(svn_binary)s --username %(svn_username)s --password %(svn_password)s
\
--non-interactive --trust-server-cert --no-auth-cache "$@" """
%
svn_dict
)
svnversion
=
os
.
path
.
join
(
self
.
bin_directory
,
'svnversion'
)
if
os
.
path
.
lexists
(
svnversion
):
os
.
unlink
(
svnversion
)
os
.
symlink
(
self
.
options
[
'svnversion_binary'
],
svnversion
)
def
installLocalGit
(
self
):
def
installLocalGit
(
self
):
git_dict
=
dict
(
git_binary
=
self
.
options
[
'git_binary'
])
git_dict
=
dict
(
git_binary
=
self
.
options
[
'git_binary'
])
git_dict
.
update
(
self
.
parameter_dict
)
git_dict
.
update
(
self
.
parameter_dict
)
...
@@ -122,19 +111,18 @@ class Recipe(BaseSlapRecipe):
...
@@ -122,19 +111,18 @@ class Recipe(BaseSlapRecipe):
home_directory
=
os
.
path
.
join
(
*
os
.
path
.
split
(
self
.
bin_directory
)[
0
:
-
1
])
home_directory
=
os
.
path
.
join
(
*
os
.
path
.
split
(
self
.
bin_directory
)[
0
:
-
1
])
print
"home_directory : %r"
%
home_directory
print
"home_directory : %r"
%
home_directory
git_dict
.
setdefault
(
"git_server_name"
,
"git.erp5.org"
)
git_dict
.
setdefault
(
"git_server_name"
,
"git.erp5.org"
)
if
git_dict
.
get
(
'vcs_
username
'
,
None
)
is
not
None
:
if
git_dict
.
get
(
'vcs_
authentication_list
'
,
None
)
is
not
None
:
netrc_file
=
open
(
os
.
path
.
join
(
home_directory
,
'.netrc'
),
'w'
)
netrc_file
=
open
(
os
.
path
.
join
(
home_directory
,
'.netrc'
),
'w'
)
netrc_file
.
write
(
"""
for
vcs_authentication_dict
in
git_dict
[
'vcs_authentication_list'
]:
machine %(git_server_name)s
netrc_file
.
write
(
"""
login %(vcs_username)s
machine %(host)s
password %(vcs_password)s"""
%
git_dict
)
login %(user_name)s
password %(password)s
"""
%
vcs_authentication_dict
)
netrc_file
.
close
()
netrc_file
.
close
()
def
installLocalRepository
(
self
):
def
installLocalRepository
(
self
):
if
self
.
parameter_dict
.
get
(
'vcs_repository'
).
endswith
(
'git'
):
self
.
installLocalGit
()
self
.
installLocalGit
()
else
:
self
.
installLocalSvn
()
def
installLocalZip
(
self
):
def
installLocalZip
(
self
):
zip
=
os
.
path
.
join
(
self
.
bin_directory
,
'zip'
)
zip
=
os
.
path
.
join
(
self
.
bin_directory
,
'zip'
)
...
...
slapos/recipe/erp5testnode/testnode.py
View file @
a9e15019
...
@@ -60,39 +60,49 @@ slapos_controler = None
...
@@ -60,39 +60,49 @@ slapos_controler = None
def
run
(
args
):
def
run
(
args
):
config
=
args
[
0
]
config
=
args
[
0
]
slapgrid
=
None
slapgrid
=
None
branch
=
config
.
get
(
'branch'
,
None
)
supervisord_pid_file
=
os
.
path
.
join
(
config
[
'instance_root'
],
'var'
,
'run'
,
supervisord_pid_file
=
os
.
path
.
join
(
config
[
'instance_root'
],
'var'
,
'run'
,
'supervisord.pid'
)
'supervisord.pid'
)
subprocess
.
check_call
([
config
[
'git_binary'
],
subprocess
.
check_call
([
config
[
'git_binary'
],
"config"
,
"--global"
,
"http.sslVerify"
,
"false"
])
"config"
,
"--global"
,
"http.sslVerify"
,
"false"
])
previous_revision
=
None
previous_revision
=
None
run_software
=
True
# find what will be the path of the repository
repository_name
=
config
[
'vcs_repository'
].
split
(
'/'
)[
-
1
].
split
(
'.'
)[
0
]
repository_path
=
os
.
path
.
join
(
config
[
'working_directory'
],
repository_name
)
config
[
'repository_path'
]
=
repository_path
sys
.
path
.
append
(
repository_path
)
run_software
=
True
# Write our own software.cfg to use the local repository
# Write our own software.cfg to use the local repository
custom_profile_path
=
os
.
path
.
join
(
config
[
'working_directory'
],
'software.cfg'
)
custom_profile_path
=
os
.
path
.
join
(
config
[
'working_directory'
],
'software.cfg'
)
config
[
'custom_profile_path'
]
=
custom_profile_path
config
[
'custom_profile_path'
]
=
custom_profile_path
vcs_repository_list
=
config
[
'vcs_repository_list'
]
# create a profile in order to use the repository we already have
profile_content
=
None
custom_profile
=
open
(
custom_profile_path
,
'w'
)
assert
len
(
vcs_repository_list
),
"we must have at least one repository"
profile_content
=
"""
for
vcs_repository
in
vcs_repository_list
:
url
=
vcs_repository
[
'url'
]
buildout_section_id
=
vcs_repository
.
get
(
'buildout_section_id'
,
None
)
repository_id
=
buildout_section_id
or
\
url
.
split
(
'/'
)[
-
1
].
split
(
'.'
)[
0
]
repository_path
=
os
.
path
.
join
(
config
[
'working_directory'
],
repository_id
)
vcs_repository
[
'repository_id'
]
=
repository_id
vcs_repository
[
'repository_path'
]
=
repository_path
if
profile_content
is
None
:
profile_content
=
"""
[buildout]
[buildout]
extends = %(software_config_path)s
extends = %(software_config_path)s
"""
%
{
'software_config_path'
:
os
.
path
.
join
(
repository_path
,
[%(repository_name)s]
config
[
'profile_path'
])}
if
not
(
buildout_section_id
is
None
):
profile_content
+=
"""
[%(buildout_section_id)s]
repository = %(repository_path)s
repository = %(repository_path)s
"""
%
{
'software_config_path'
:
os
.
path
.
join
(
repository_path
,
branch = %(branch)s
config
[
'profile_path'
])
,
"""
%
{
'buildout_section_id'
:
buildout_section_id
,
'repository_name'
:
repository_name
,
'repository_path'
:
repository_path
,
'repository_path'
:
repository_path
}
'branch'
:
vcs_repository
.
get
(
'branch'
,
''
)
}
if
branch
is
not
None
:
profile_content
+=
"
\
n
branch = %s"
%
branch
custom_profile
=
open
(
custom_profile_path
,
'w'
)
custom_profile
.
write
(
profile_content
)
custom_profile
.
write
(
profile_content
)
custom_profile
.
close
()
custom_profile
.
close
()
config
[
'repository_path'
]
=
repository_path
sys
.
path
.
append
(
repository_path
)
test_suite_title
=
config
[
'test_suite_title'
]
or
config
[
'test_suite'
]
retry_software
=
False
retry_software
=
False
try
:
try
:
while
True
:
while
True
:
...
@@ -104,19 +114,24 @@ repository = %(repository_path)s
...
@@ -104,19 +114,24 @@ repository = %(repository_path)s
except
:
except
:
pass
pass
process_group_pid_set
.
clear
()
process_group_pid_set
.
clear
()
full_revision_list
=
[]
# Make sure we have local repository
# Make sure we have local repository
if
not
os
.
path
.
exists
(
repository_path
):
for
vcs_repository
in
vcs_repository_list
:
parameter_list
=
[
config
[
'git_binary'
],
'clone'
,
repository_path
=
vcs_repository
[
'repository_path'
]
config
[
'vcs_repository'
]]
repository_id
=
vcs_repository
[
'repository_id'
]
if
branch
is
not
None
:
if
not
os
.
path
.
exists
(
repository_path
):
parameter_list
.
extend
([
'-b'
,
branch
])
parameter_list
=
[
config
[
'git_binary'
],
'clone'
,
parameter_list
.
append
(
repository_path
)
vcs_repository
[
'url'
]]
subprocess
.
check_call
(
parameter_list
)
if
vcs_repository
.
get
(
'branch'
)
is
not
None
:
# XXX this looks like to not wait the end of the command
parameter_list
.
extend
([
'-b'
,
vcs_repository
.
get
(
'branch'
)])
# Make sure we have local repository
parameter_list
.
append
(
repository_path
)
updater
=
Updater
(
repository_path
,
git_binary
=
config
[
'git_binary'
])
subprocess
.
check_call
(
parameter_list
)
updater
.
checkout
()
# Make sure we have local repository
revision
=
updater
.
getRevision
()
updater
=
Updater
(
repository_path
,
git_binary
=
config
[
'git_binary'
])
updater
.
checkout
()
revision
=
"-"
.
join
(
updater
.
getRevision
())
full_revision_list
.
append
(
'%s=%s'
%
(
repository_id
,
revision
))
revision
=
','
.
join
(
full_revision_list
)
if
previous_revision
==
revision
:
if
previous_revision
==
revision
:
time
.
sleep
(
120
)
time
.
sleep
(
120
)
if
not
(
retry_software
):
if
not
(
retry_software
):
...
@@ -137,17 +152,21 @@ repository = %(repository_path)s
...
@@ -137,17 +152,21 @@ repository = %(repository_path)s
master
=
portal
.
portal_task_distribution
master
=
portal
.
portal_task_distribution
assert
master
.
getProtocolRevision
()
==
1
assert
master
.
getProtocolRevision
()
==
1
test_result
=
safeRpcCall
(
master
.
createTestResult
,
test_result
=
safeRpcCall
(
master
.
createTestResult
,
config
[
'test_suite_name'
],
revision
,
[],
config
[
'test_suite'
],
revision
,
[],
False
,
config
[
'test_suite_title'
])
False
,
test_suite_title
,
config
[
'test_node_title'
],
config
[
'project_title'
])
print
"testnode, test_result : %r"
%
(
test_result
,)
print
"testnode, test_result : %r"
%
(
test_result
,)
if
test_result
:
if
test_result
:
test_result_path
,
test_revision
=
test_result
test_result_path
,
test_revision
=
test_result
if
revision
!=
test_revision
:
if
revision
!=
test_revision
:
# other testnodes on other boxes are already ready to test another
for
i
,
repository_revision
in
enumerate
(
test_revision
.
split
(
','
)):
# revision
vcs_repository
=
vcs_repository_list
[
i
]
updater
=
Updater
(
repository_path
,
git_binary
=
config
[
'git_binary'
],
repository_path
=
vcs_repository
[
'repository_path'
]
revision
=
test_revision
)
# other testnodes on other boxes are already ready to test another
updater
.
checkout
()
# revision
updater
=
Updater
(
repository_path
,
git_binary
=
config
[
'git_binary'
],
revision
=
repository_revision
.
split
(
'-'
)[
1
])
updater
.
checkout
()
# Now prepare the installation of SlapOS
# Now prepare the installation of SlapOS
slapos_controler
=
SlapOSControler
(
config
,
slapos_controler
=
SlapOSControler
(
config
,
...
@@ -159,7 +178,7 @@ repository = %(repository_path)s
...
@@ -159,7 +178,7 @@ repository = %(repository_path)s
)
)
if
status_dict
[
'status_code'
]
!=
0
:
if
status_dict
[
'status_code'
]
!=
0
:
safeRpcCall
(
master
.
reportTaskFailure
,
safeRpcCall
(
master
.
reportTaskFailure
,
test_result_path
,
status_dict
,
config
[
'test_
suit
e_title'
])
test_result_path
,
status_dict
,
config
[
'test_
nod
e_title'
])
retry_software
=
True
retry_software
=
True
continue
continue
...
@@ -169,24 +188,21 @@ repository = %(repository_path)s
...
@@ -169,24 +188,21 @@ repository = %(repository_path)s
# update repositories downloaded by buildout. Later we should get
# update repositories downloaded by buildout. Later we should get
# from master a list of repositories
# from master a list of repositories
repository_path_list
=
glob
(
os
.
path
.
join
(
config
[
'software_root'
],
'*'
,
'parts'
,
'git_repository'
,
'*'
))
# The section below seems useless since we override buildout
assert
len
(
repository_path_list
)
>=
0
# configuration to use local checkouts
for
repository_path
in
repository_path_list
:
#repository_path_list = glob(os.path.join(config['software_root'],
updater
=
Updater
(
repository_path
,
git_binary
=
config
[
'git_binary'
])
#'*', 'parts', 'git_repository', '*'))
updater
.
checkout
()
#assert len(repository_path_list) >= 0
if
os
.
path
.
split
(
repository_path
)[
-
1
]
==
repository_name
:
#for repository_path in repository_path_list:
# redo checkout with good revision, the previous one is used
#updater = Updater(repository_path, git_binary=config['git_binary'])
# to pull last code
#updater.checkout()
updater
=
Updater
(
repository_path
,
git_binary
=
config
[
'git_binary'
],
#if os.path.split(repository_path)[-1] == repository_name:
revision
=
revision
)
## redo checkout with good revision, the previous one is used
updater
.
checkout
()
## to pull last code
# calling dist/externals is only there for backward compatibility,
#updater = Updater(repository_path, git_binary=config['git_binary'],
# the code will be removed soon
#revision=revision)
if
os
.
path
.
exists
(
os
.
path
.
join
(
repository_path
,
'dist/externals.py'
)):
#updater.checkout()
process
=
subprocess
.
Popen
([
'dist/externals.py'
],
cwd
=
repository_path
)
process
.
wait
()
partition_path
=
os
.
path
.
join
(
config
[
'instance_root'
],
partition_path
=
os
.
path
.
join
(
config
[
'instance_root'
],
config
[
'partition_reference'
])
config
[
'partition_reference'
])
...
@@ -206,7 +222,7 @@ repository = %(repository_path)s
...
@@ -206,7 +222,7 @@ repository = %(repository_path)s
if
line
[:
2
]
==
'#!'
:
if
line
[:
2
]
==
'#!'
:
invocation_list
=
line
[
2
:].
split
()
invocation_list
=
line
[
2
:].
split
()
invocation_list
.
extend
([
run_test_suite_path
,
invocation_list
.
extend
([
run_test_suite_path
,
'--test_suite'
,
config
[
'test_suite
_name
'
],
'--test_suite'
,
config
[
'test_suite'
],
'--revision'
,
revision
,
'--revision'
,
revision
,
'--node_quantity'
,
config
[
'node_quantity'
],
'--node_quantity'
,
config
[
'node_quantity'
],
'--master_url'
,
config
[
'test_suite_master_url'
]])
'--master_url'
,
config
[
'test_suite_master_url'
]])
...
...
software/erp5testnode/instance.cfg
View file @
a9e15019
...
@@ -6,7 +6,7 @@ eggs-directory = ${buildout:eggs-directory}
...
@@ -6,7 +6,7 @@ eggs-directory = ${buildout:eggs-directory}
develop-eggs-directory = ${buildout:develop-eggs-directory}
develop-eggs-directory = ${buildout:develop-eggs-directory}
[testnode]
[testnode]
recipe =
erp5.recipe.
testnode
recipe =
slapos.cookbook:erp5
testnode
buildbot_binary = ${buildout:bin-directory}/buildbot
buildbot_binary = ${buildout:bin-directory}/buildbot
slapgrid_partition_binary = ${buildout:bin-directory}/slapgrid-cp
slapgrid_partition_binary = ${buildout:bin-directory}/slapgrid-cp
...
...
software/erp5testnode/software.cfg
View file @
a9e15019
...
@@ -12,11 +12,11 @@ find-links = http://www.nexedi.org/static/packages/source/slapos.buildout/
...
@@ -12,11 +12,11 @@ find-links = http://www.nexedi.org/static/packages/source/slapos.buildout/
versions = versions
versions = versions
rebootstrap-section = python2.6
rebootstrap-section = python2.6
extends =
extends =
profile/python-2.6
.cfg
../../component/python-2.6/buildout
.cfg
profile/subversion
.cfg
../../component/subversion/buildout
.cfg
profile/gi
t.cfg
../../component/git/buildou
t.cfg
profile/lxml-python
.cfg
../../component/lxml-python/buildout
.cfg
profile/zip
.cfg
../../component/zip/buildout
.cfg
parts =
parts =
template
template
...
@@ -46,12 +46,11 @@ zc.buildout = 1.5.3-dev-SlapOS-001
...
@@ -46,12 +46,11 @@ zc.buildout = 1.5.3-dev-SlapOS-001
recipe = zc.recipe.egg
recipe = zc.recipe.egg
eggs =
eggs =
${lxml-python:egg}
${lxml-python:egg}
erp5.recipe.testnod
e
slapos.cor
e
slapos.
toolbox
slapos.
cookbook
[template]
[template]
recipe = slapos.cookbook:template
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/testnode-instance.cfg
url = ${:_profile_base_location_}/instance.cfg
md5sum = 0b44b72c9e21d760f7e27a89e9d10187
output = ${buildout:directory}/template.cfg
output = ${buildout:directory}/template.cfg
mode = 0644
mode = 0644
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