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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Romain Courteaud
slapos.core
Commits
c66a7312
Commit
c66a7312
authored
Jun 23, 2013
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SlapObject: extracted method _set_ownership
parent
07f25be4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
12 deletions
+20
-12
slapos/grid/SlapObject.py
slapos/grid/SlapObject.py
+20
-12
No files found.
slapos/grid/SlapObject.py
View file @
c66a7312
...
...
@@ -141,24 +141,33 @@ class Software(object):
finally
:
shutil
.
rmtree
(
cache_dir
)
def
_set_ownership
(
self
,
path
):
"""
If running as root: copy ownership of software_root to path
If not running as root: do nothing
"""
if
os
.
getuid
():
return
root_stat
=
os
.
stat
(
self
.
software_root
)
path_stat
=
os
.
stat
(
path
)
if
(
root_stat
.
st_uid
!=
path_stat
.
st_uid
or
root_stat
.
st_gid
!=
path_stat
.
st_gid
):
os
.
chown
(
path
,
root_stat
.
st_uid
,
root_stat
.
st_gid
)
def
_install_from_buildout
(
self
):
""" Fetches buildout configuration from the server, run buildout with
it. If it fails, we notify the server.
"""
root_stat
_info
=
os
.
stat
(
self
.
software_root
)
root_stat
=
os
.
stat
(
self
.
software_root
)
os
.
environ
=
getCleanEnvironment
(
logger
=
self
.
logger
,
home_path
=
pwd
.
getpwuid
(
root_stat
_info
.
st_uid
).
pw_dir
)
home_path
=
pwd
.
getpwuid
(
root_stat
.
st_uid
).
pw_dir
)
if
not
os
.
path
.
isdir
(
self
.
software_path
):
os
.
mkdir
(
self
.
software_path
)
self
.
_set_ownership
(
self
.
software_path
)
extends_cache
=
tempfile
.
mkdtemp
()
if
os
.
getuid
()
==
0
:
# In case when running as root copy ownership, to simplify logic
for
path
in
[
self
.
software_path
,
extends_cache
]:
path_stat_info
=
os
.
stat
(
path
)
if
(
root_stat_info
.
st_uid
!=
path_stat_info
.
st_uid
or
root_stat_info
.
st_gid
!=
path_stat_info
.
st_gid
):
os
.
chown
(
path
,
root_stat_info
.
st_uid
,
root_stat_info
.
st_gid
)
self
.
_set_ownership
(
extends_cache
)
try
:
buildout_parameter_list
=
[
'buildout:extends-cache=%s'
%
extends_cache
,
...
...
@@ -197,7 +206,6 @@ class Software(object):
shutil
.
rmtree
(
extends_cache
)
def
createProfileIfMissing
(
self
,
buildout_cfg
,
url
):
root_stat_info
=
os
.
stat
(
self
.
software_root
)
if
not
os
.
path
.
exists
(
buildout_cfg
):
with
open
(
buildout_cfg
,
'wb'
)
as
fout
:
fout
.
write
(
textwrap
.
dedent
(
"""
\
...
...
@@ -207,7 +215,7 @@ class Software(object):
[buildout]
extends = {url}
"""
.
format
(
url
=
url
)))
os
.
chown
(
buildout_cfg
,
root_stat_info
.
st_uid
,
root_stat_info
.
st_gid
)
self
.
_set_ownership
(
buildout_cfg
)
def
uploadSoftwareRelease
(
self
,
tarpath
):
"""
...
...
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