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
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
Ivan Tyagov
slapos.core
Commits
4c0de183
Commit
4c0de183
authored
Jul 31, 2012
by
Antoine Catton
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'lxc-capabilities-experiment' into lxc
parents
e10546ae
4f5a7f2c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
slapos/grid/SlapObject.py
slapos/grid/SlapObject.py
+11
-1
No files found.
slapos/grid/SlapObject.py
View file @
4c0de183
...
...
@@ -31,6 +31,7 @@ import logging
import
os
import
shutil
import
subprocess
import
ConfigParser
import
pkg_resources
import
stat
import
tempfile
...
...
@@ -144,9 +145,18 @@ class Software(object):
os
.
chown
(
path
,
root_stat_info
.
st_uid
,
root_stat_info
.
st_gid
)
try
:
# XXX: Here's a Quick & Dirty hack, this was
# design to work as quick as possible with the most minimalist
# impact.
buildout_parameter_list
=
[
'buildout:extends-cache=%s'
%
extends_cache
,
'buildout:directory=%s'
%
self
.
software_path
,]
'buildout:directory=%s'
%
self
.
software_path
,
# XXX: This doesn't comes out of nowhere.
# actually, this is specified in component/slapos/buildout.cfg
# in slapos.cookbook repository.
'libcap:location=%s'
%
os
.
environ
.
get
(
'LIBCAP_LOCATION'
,
''
),
'attr:location=%s'
%
os
.
environ
.
get
(
'ATTR_LOCATION'
,
''
),
]
if
self
.
signature_private_key_file
or
\
self
.
upload_cache_url
or
\
...
...
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