Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
17
Merge Requests
17
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos.core
Commits
14419e35
Commit
14419e35
authored
Jun 09, 2017
by
Tomáš Peterka
Committed by
Rafael Monnerat
Jun 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[format] Small code cleanup
parent
37fc1cf9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
slapos/format.py
slapos/format.py
+4
-3
No files found.
slapos/format.py
View file @
14419e35
...
...
@@ -611,8 +611,8 @@ class Computer(object):
Return:
A Computer object.
"""
dumped_dict
=
xml_marshaller
.
xml_marshaller
.
loads
(
open
(
path_to_xml
).
read
()
)
with
open
(
path_to_xml
,
"rb"
)
as
fi
:
dumped_dict
=
xml_marshaller
.
xml_marshaller
.
load
(
fi
)
# Reconstructing the computer object from the xml
computer
=
Computer
(
...
...
@@ -980,7 +980,8 @@ class User(object):
user_parameter_list
.
append
(
'-r'
)
callAndRead
([
'useradd'
]
+
user_parameter_list
)
else
:
callAndRead
([
'usermod'
]
+
user_parameter_list
)
# if the user is already created and used we should not fail
callAndRead
([
'usermod'
]
+
user_parameter_list
,
raise_on_error
=
False
)
# lock the password of user
callAndRead
([
'passwd'
,
'-l'
,
self
.
name
])
...
...
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