Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos-mynij-dev
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
Mynij
slapos-mynij-dev
Commits
cb232665
Commit
cb232665
authored
Feb 23, 2012
by
Tatuya Kamada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add webchecker entrypoint.
Add several parameters for web_checker recipe template.
parent
56d3db33
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
setup.py
setup.py
+1
-0
slapos/recipe/web_checker/__init__.py
slapos/recipe/web_checker/__init__.py
+2
-0
slapos/recipe/web_checker/template/web_checker.cfg.in
slapos/recipe/web_checker/template/web_checker.cfg.in
+1
-1
No files found.
setup.py
View file @
cb232665
...
@@ -96,6 +96,7 @@ setup(name=name,
...
@@ -96,6 +96,7 @@ setup(name=name,
'erp5.update = slapos.recipe.erp5_update:Recipe'
,
'erp5.update = slapos.recipe.erp5_update:Recipe'
,
'erp5.test = slapos.recipe.erp5_test:Recipe'
,
'erp5.test = slapos.recipe.erp5_test:Recipe'
,
'generic.varnish = slapos.recipe.generic_varnish:Recipe'
,
'generic.varnish = slapos.recipe.generic_varnish:Recipe'
,
'webchecker = slapos.recipe.web_checker:Recipe'
,
],
],
'slapos.recipe.nosqltestbed.plugin'
:
[
'slapos.recipe.nosqltestbed.plugin'
:
[
'kumo = slapos.recipe.nosqltestbed.kumo:KumoTestBed'
,
'kumo = slapos.recipe.nosqltestbed.kumo:KumoTestBed'
,
...
...
slapos/recipe/web_checker/__init__.py
View file @
cb232665
...
@@ -41,8 +41,10 @@ class Recipe(GenericSlapRecipe):
...
@@ -41,8 +41,10 @@ class Recipe(GenericSlapRecipe):
config
=
dict
(
config
=
dict
(
web_checker_mail_address
=
web_checker_mail_address
,
web_checker_mail_address
=
web_checker_mail_address
,
web_checker_smtp_host
=
web_checker_smtp_host
,
web_checker_smtp_host
=
web_checker_smtp_host
,
web_checker_working_directory
=
web_checker_working_directory
,
frontend_url
=
self
.
options
[
'frontend-url'
],
frontend_url
=
self
.
options
[
'frontend-url'
],
wget_binary_path
=
self
.
options
[
'wget-binary-path'
],
wget_binary_path
=
self
.
options
[
'wget-binary-path'
],
varnishlog_binary_path
=
self
.
options
[
'varnishlog-binary-path'
],
web_checker_log
=
self
.
options
[
'web-checker-log'
],
web_checker_log
=
self
.
options
[
'web-checker-log'
],
)
)
path_list
.
append
(
self
.
createFile
(
self
.
options
[
'web-checker-config'
],
path_list
.
append
(
self
.
createFile
(
self
.
options
[
'web-checker-config'
],
...
...
slapos/recipe/web_checker/template/web_checker.cfg.in
View file @
cb232665
...
@@ -3,7 +3,7 @@ url = %(frontend_url)s
...
@@ -3,7 +3,7 @@ url = %(frontend_url)s
working_directory = %(web_checker_working_directory)s
working_directory = %(web_checker_working_directory)s
varnishlog_binary_path = %(varnishlog_binary_path)s
varnishlog_binary_path = %(varnishlog_binary_path)s
wget_binary_path = %(wget_binary_path)s
wget_binary_path = %(wget_binary_path)s
email_address = %(web_checker_
e
mail_address)s
email_address = %(web_checker_mail_address)s
smtp_host = %(web_checker_smtp_host)s
smtp_host = %(web_checker_smtp_host)s
debug_level = debug
debug_level = debug
file_log_path = %(web_checker_log)s
file_log_path = %(web_checker_log)s
...
...
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