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
Kwabena Antwi-Boasiako
slapos
Commits
8e20adaa
Commit
8e20adaa
authored
Jun 28, 2011
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make mysql server configurable.
parent
18bc7848
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
53 deletions
+56
-53
slapos/recipe/erp5/__init__.py
slapos/recipe/erp5/__init__.py
+56
-53
No files found.
slapos/recipe/erp5/__init__.py
View file @
8e20adaa
...
@@ -823,7 +823,8 @@ class Recipe(BaseSlapRecipe):
...
@@ -823,7 +823,8 @@ class Recipe(BaseSlapRecipe):
def
installMysqlServer
(
self
,
ip
,
port
,
database
=
'erp5'
,
user
=
'user'
,
def
installMysqlServer
(
self
,
ip
,
port
,
database
=
'erp5'
,
user
=
'user'
,
test_database
=
'test_erp5'
,
test_user
=
'test_user'
,
template_filename
=
None
,
test_database
=
'test_erp5'
,
test_user
=
'test_user'
,
template_filename
=
None
,
parallel_test_database_amount
=
100
,
mysql_conf
=
None
):
parallel_test_database_amount
=
100
,
mysql_conf
=
None
,
with_backup
=
True
,
with_maatkit
=
True
):
if
mysql_conf
is
None
:
if
mysql_conf
is
None
:
mysql_conf
=
{}
mysql_conf
=
{}
backup_directory
=
self
.
createBackupDirectory
(
'mysql'
)
backup_directory
=
self
.
createBackupDirectory
(
'mysql'
)
...
@@ -897,6 +898,7 @@ class Recipe(BaseSlapRecipe):
...
@@ -897,6 +898,7 @@ class Recipe(BaseSlapRecipe):
)]))
)]))
self
.
path_list
.
extend
([
mysql_conf_path
])
self
.
path_list
.
extend
([
mysql_conf_path
])
if
with_backup
:
# backup configuration
# backup configuration
backup_directory
=
self
.
createBackupDirectory
(
'mysql'
)
backup_directory
=
self
.
createBackupDirectory
(
'mysql'
)
full_backup
=
os
.
path
.
join
(
backup_directory
,
'full'
)
full_backup
=
os
.
path
.
join
(
backup_directory
,
'full'
)
...
@@ -931,6 +933,7 @@ class Recipe(BaseSlapRecipe):
...
@@ -931,6 +933,7 @@ class Recipe(BaseSlapRecipe):
open
(
mysql_backup_cron
,
'w'
).
write
(
'0 0 * * * '
+
backup_controller
)
open
(
mysql_backup_cron
,
'w'
).
write
(
'0 0 * * * '
+
backup_controller
)
self
.
path_list
.
append
(
mysql_backup_cron
)
self
.
path_list
.
append
(
mysql_backup_cron
)
if
with_maatkit
:
# maatkit installation
# maatkit installation
for
mk_script_name
in
(
for
mk_script_name
in
(
'mk-variable-advisor'
,
'mk-variable-advisor'
,
...
...
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