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
Labels
Merge Requests
112
Merge Requests
112
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
6c32a4d6
Commit
6c32a4d6
authored
Mar 03, 2025
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "switch-softwaretype: copy the slap-configuration values"
This reverts commit
69d7b336
.
parent
69d7b336
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
15 deletions
+0
-15
setup.py
setup.py
+0
-1
slapos/recipe/switch_softwaretype.py
slapos/recipe/switch_softwaretype.py
+0
-14
No files found.
setup.py
View file @
6c32a4d6
...
...
@@ -155,7 +155,6 @@ setup(name=name,
'sshkeys_authority = slapos.recipe.sshkeys_authority:Recipe'
,
'sshkeys_authority.request = slapos.recipe.sshkeys_authority:Request'
,
'switch-softwaretype = slapos.recipe.switch_softwaretype:Recipe'
,
'switch-softwaretype.noop = slapos.recipe.switch_softwaretype:NoOperation'
,
'symbolic.link = slapos.recipe.symbolic_link:Recipe'
,
'tidstorage = slapos.recipe.tidstorage:Recipe'
,
'trac = slapos.recipe.trac:Recipe'
,
...
...
slapos/recipe/switch_softwaretype.py
View file @
6c32a4d6
...
...
@@ -55,9 +55,6 @@ class SubBuildout(Buildout):
# Use same slap connection
for
k
,
v
in
main_buildout
[
"slap-connection"
].
items
():
options
.
append
((
'slap-connection'
,
k
,
v
))
for
k
,
v
in
main_buildout
[
"slap-configuration"
].
items
():
options
.
append
((
'slap-configuration'
,
k
,
v
))
options
.
append
((
'slap-configuration'
,
'recipe'
,
'switch-softwaretype.noop'
))
Buildout
.
__init__
(
self
,
config
,
options
,
**
kwargs
)
...
...
@@ -125,14 +122,3 @@ class Recipe:
sub_buildout
.
install
([])
update
=
install
class
NoOperation
:
def
__init__
(
self
,
buildout
,
name
,
options
):
self
.
buildout
=
buildout
self
.
options
=
options
self
.
name
=
name
def
install
(
self
):
return
[]
update
=
install
\ No newline at end of file
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