Skip to content

Commit 19325b4

Browse files
committedJun 3, 2022
cmdlib: Ensure bare-user tmpdir is in $workdir/tmp
Linux `tmpfs` still doesn't support `user.` xattrs, and so for toolbox-like containers that use a (proper!) `tmpfs` for `/tmp` instead of having it be `overlayfs`, we need to ensure that we create our tempdir in `$workdir/tmp` - the workdir must have `user.` xattr support for the `cache/repo-build` anyways. Closes: #2904
1 parent 04a5f22 commit 19325b4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/cosalib/cmdlib.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,9 @@ def extract_image_json(workdir, commit):
265265
#
266266
# Call this function to ensure that the ostree commit for a given build is in tmp/repo.
267267
def import_ostree_commit(workdir, buildpath, buildmeta, force=False):
268+
tmpdir = os.path.join(workdir, 'tmp')
268269
with Lock(os.path.join(workdir, 'tmp/repo.import.lock')):
269-
repo = os.path.join(workdir, 'tmp/repo')
270+
repo = os.path.join(tmpdir, 'repo')
270271
commit = buildmeta['ostree-commit']
271272
tarfile = os.path.join(buildpath, buildmeta['images']['ostree']['path'])
272273
# create repo in case e.g. tmp/ was cleared out; idempotent
@@ -298,7 +299,7 @@ def import_ostree_commit(workdir, buildpath, buildmeta, force=False):
298299
gid = os.getgid()
299300
subprocess.check_call(['sudo', 'chown', '-hR', f"{uid}:{gid}", repo])
300301
else:
301-
with tempfile.TemporaryDirectory() as tmpd:
302+
with tempfile.TemporaryDirectory(dir=tmpdir) as tmpd:
302303
subprocess.check_call(['ostree', 'init', '--repo', tmpd, '--mode=bare-user'])
303304
subprocess.check_call(['ostree', 'container', 'import', '--repo', tmpd,
304305
'--write-ref', buildmeta['buildid'],

0 commit comments

Comments
 (0)