Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
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
0
Merge Requests
0
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
Guillaume Hervier
slapos.package
Commits
5294a8cb
Commit
5294a8cb
authored
Mar 05, 2013
by
Jean-Baptiste Petre
Committed by
Cédric de Saint Martin
Mar 05, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix commit
dab41f46
(chown).
parent
dab41f46
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
9 deletions
+12
-9
slapprepare/slapprepare/slapprepare.py
slapprepare/slapprepare/slapprepare.py
+12
-9
No files found.
slapprepare/slapprepare/slapprepare.py
View file @
5294a8cb
...
...
@@ -574,21 +574,24 @@ def chownSlaposDirectory():
slapformat_partition_base_name
=
config
.
get
(
'slapformat'
,
'partition_base_name'
)
slapformat_user_base_name
=
config
.
get
(
'slapformat'
,
'user_base_name'
)
p
rint
"Changing owners of software directory and partitions directories..."
# chown of partitions (/srv/slapgrid/slappart*)
p
ath
=
slapos_slapgrid_instance
print
"Changing owners of software directory and partitions directories…"
for
i
in
range
(
int
(
slapformat_partition
)):
uid
=
getpwnam
(
'%s%s'
%
(
slapformat_user_base_name
,
i
)
)[
2
]
gid
=
getpwnam
(
'%s%s'
%
(
slapformat_user_base_name
,
i
)
)[
3
]
item
=
'%s%s'
%
(
slapformat_partition_base_name
,
i
)
itempath
=
os
.
path
.
join
(
slapos_slapgrid_instance
,
item
)
itempath
=
os
.
path
.
join
(
path
,
item
)
os
.
chown
(
itempath
,
uid
,
gid
)
slapos_slapgrid_instance
=
"%s/%s%s"
%
(
slapos_slapgrid_instance
,
slapformat_partition_base_name
,
i
)
for
root
,
dirs
,
files
in
os
.
walk
(
slapos_slapgrid_instance
):
for
i
in
range
(
int
(
slapformat_partition
)):
path
=
"%s/%s%s"
%
(
slapos_slapgrid_instance
,
slapformat_partition_base_name
,
i
)
for
root
,
dirs
,
files
in
os
.
walk
(
path
):
for
items
in
dirs
,
files
:
for
item
in
items
:
if
not
os
.
path
.
islink
(
item
):
os
.
chown
(
os
.
path
.
join
(
root
,
item
),
getpwnam
(
'%s%s'
%
(
slapformat_user_base_name
,
i
)
)[
2
],
getpwnam
(
'%s%s'
%
(
slapformat_user_base_name
,
i
)
)[
3
])
# chown of software root (/opt/slapgrid)
for
root
,
dirs
,
files
in
os
.
walk
(
slapos_slapgrid_software
):
for
items
in
dirs
,
files
:
...
...
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