Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Thomas Leymonerie
slapos
Commits
5d5956c0
Commit
5d5956c0
authored
13 years ago
by
Vincent Pelletier
Browse files
Options
Download
Email Patches
Plain Diff
Provide a recipe to access GenericBaseRecipe.generatePassword .
parent
8ccb11d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
setup.py
setup.py
+1
-0
slapos/recipe/pwgen.py
slapos/recipe/pwgen.py
+14
-0
No files found.
setup.py
View file @
5d5956c0
...
...
@@ -93,6 +93,7 @@ setup(name=name,
'publish = slapos.recipe.publish:Recipe'
,
'publishurl = slapos.recipe.publishurl:Recipe'
,
'pwgen = slapos.recipe.pwgen:Recipe'
,
'pwgen.stable = slapos.recipe.pwgen:StablePasswordGeneratorRecipe'
,
'proactive = slapos.recipe.proactive:Recipe'
,
'request = slapos.recipe.request:Recipe'
,
'seleniumrunner = slapos.recipe.seleniumrunner:Recipe'
,
...
...
This diff is collapsed.
Click to expand it.
slapos/recipe/pwgen.py
View file @
5d5956c0
...
...
@@ -42,3 +42,17 @@ class Recipe(GenericBaseRecipe):
options
[
'password'
]
=
password
update
=
install
=
lambda
self
:
[]
class
StablePasswordGeneratorRecipe
(
GenericBaseRecipe
):
"""
The purpose of this class is to generate a password which doesn't change
from one execution to the next (hence "stable"), so the generated password
doesn't change on each slapgrid-sr execution.
See GenericBaseRecipe.generatePassword .
"""
def
_options
(
self
,
options
):
options
[
'password'
]
=
self
.
generatePassword
()
update
=
install
=
lambda
self
:
[]
This diff is collapsed.
Click to expand it.
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