libpriv/core: Always call rpmtsSetRootDir()
Call `rpmtsSetRootDir()` even in the `JUSTDB` run. This brings us in line with libdnf and the rpm CLI itself, which both unconditionally call `rpmtsSetRootDir()` regardless of whether we're targeting the system root or a subdir. This doesn't cause a `chroot()` to happen since librpm only does this if the target root dir is not `/`. Related: https://bugzilla.redhat.com/show_bug.cgi?id=1613517 Closes: #1492 Approved by: cgwalters
This commit is contained in:
parent
7c87a553e4
commit
eae3a40f3b
@ -4009,6 +4009,8 @@ rpmostree_context_assemble (RpmOstreeContext *self,
|
||||
}
|
||||
|
||||
g_auto(rpmts) rpmdb_ts = rpmtsCreate ();
|
||||
/* Always call rpmtsSetRootDir() here so rpmtsRootDir() isn't NULL -- see rhbz#1613517 */
|
||||
rpmtsSetRootDir (rpmdb_ts, "/");
|
||||
rpmtsSetVSFlags (rpmdb_ts, _RPMVSF_NOSIGNATURES | _RPMVSF_NODIGESTS);
|
||||
/* https://bugzilla.redhat.com/show_bug.cgi?id=1607223
|
||||
* Newer librpm defaults to doing a full payload checksum, which we can't
|
||||
|
Loading…
Reference in New Issue
Block a user