Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Crans Passwords
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nounous
Crans Passwords
Commits
9ed7d68c
Commit
9ed7d68c
authored
12 years ago
by
Daniel STAN
Browse files
Options
Downloads
Patches
Plain Diff
Séparation du fichier de config et multiserver
parent
15c0208e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config.py
+22
-0
22 additions, 0 deletions
config.py
cranspasswords.py
+3
-3
3 additions, 3 deletions
cranspasswords.py
with
25 additions
and
3 deletions
config.py
0 → 100755
+
22
−
0
View file @
9ed7d68c
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import
os
servers
=
{
'
debug
'
:
{
'
server_cmd
'
:
[
'
/usr/bin/ssh
'
,
'
localhost
'
,
\
'
/home/dstan/crans/cranspasswords/cranspasswords-server.py
'
],
'
user
'
:
'
dstan
'
},
'
debug2
'
:
{
'
server_cmd
'
:[
'
/usr/bin/ssh
'
,
'
vo
'
,
\
'
/home/dstan/cranspasswords/cranspasswords-server
'
],
'
user
'
:
'
dstan
'
},
'
default
'
:
{
'
server_cmd
'
:
[
'
/usr/bin/ssh
'
,
'
vert.adm.crans.org
'
,
\
'
/root/cranspasswords/cranspasswords-server
'
],
'
user
'
:
os
.
getenv
(
'
USER
'
)
# À définir à la main pour les personnes
# n'ayant pas le même login sur leur pc
}
}
This diff is collapsed.
Click to expand it.
cranspasswords.py
+
3
−
3
View file @
9ed7d68c
...
@@ -274,7 +274,7 @@ def edit_file(fname):
...
@@ -274,7 +274,7 @@ def edit_file(fname):
roles
=
get_my_roles
()
roles
=
get_my_roles
()
# Par défaut les roles d'un fichier sont ceux en écriture de son
# Par défaut les roles d'un fichier sont ceux en écriture de son
# créateur
# créateur
roles
=
[
r
[:
-
2
]
for
r
in
filter
(
lambda
r
:
r
.
endswith
(
'
-w
'
)
,
roles
)
]
roles
=
[
r
[:
-
2
]
for
r
in
roles
if
r
.
endswith
(
'
-w
'
)
]
if
roles
==
[]:
if
roles
==
[]:
print
"
Vous ne possédez aucun rôle en écriture ! Abandon.
"
print
"
Vous ne possédez aucun rôle en écriture ! Abandon.
"
return
return
...
@@ -323,7 +323,7 @@ def update_role(roles=None):
...
@@ -323,7 +323,7 @@ def update_role(roles=None):
my_roles
=
get_my_roles
()
my_roles
=
get_my_roles
()
if
roles
==
None
:
if
roles
==
None
:
# On ne conserve que les rôles qui finissent par -w
# On ne conserve que les rôles qui finissent par -w
roles
=
[
r
[:
-
2
]
for
r
in
filter
(
lambda
r
:
r
.
endswith
(
'
-w
'
)
,
my_roles
)
]
roles
=
[
r
[:
-
2
]
for
r
in
my_roles
if
r
.
endswith
(
'
-w
'
)]
if
type
(
roles
)
!=
list
:
if
type
(
roles
)
!=
list
:
roles
=
[
roles
]
roles
=
[
roles
]
...
@@ -338,7 +338,7 @@ def parse_roles(strroles):
...
@@ -338,7 +338,7 @@ def parse_roles(strroles):
if
strroles
==
None
:
return
None
if
strroles
==
None
:
return
None
roles
=
all_roles
()
roles
=
all_roles
()
my_roles
=
filter
(
lambda
r
:
USER
in
roles
[
r
],
roles
.
keys
())
my_roles
=
filter
(
lambda
r
:
USER
in
roles
[
r
],
roles
.
keys
())
my_roles_w
=
[
r
[:
-
2
]
for
r
in
filter
(
lambda
r
:
r
.
endswith
(
'
-w
'
)
,
my_roles
)
]
my_roles_w
=
[
r
[:
-
2
]
for
r
in
my_roles
if
r
.
endswith
(
'
-w
'
)
]
ret
=
set
()
ret
=
set
()
writable
=
False
writable
=
False
for
role
in
strroles
.
split
(
'
,
'
):
for
role
in
strroles
.
split
(
'
,
'
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment