3e9c6cf230
In #875 AKA b46fc35901
we
added support for the `releasever` option in treefiles. I am
pretty sure it worked at the time...but I didn't add tests.
Either it never worked or some refactoring broke it. The whole chain of
`GKeyFile` → `GVariant` is so confusing. Anyways fix it by copying the string.
Now let's use it by default in the compose tests, and while we're here bump
those to F27.
I'm doing this patch now as I was playing with doing a compose from
the `/usr/share/rpm-ostree/treefile.json` and wanted to use the stock
`.repo` files.
Closes: #1220
Approved by: jlebon
21 lines
426 B
Bash
Executable File
21 lines
426 B
Bash
Executable File
#!/usr/bin/bash
|
|
set -xeuo pipefail
|
|
|
|
cd ${test_tmpdir}
|
|
|
|
dn=$(cd $(dirname $0) && pwd)
|
|
. ${dn}/../common/libtest-core.sh
|
|
|
|
cat >httpd.conf <<EOF
|
|
[tree]
|
|
ref=httpd
|
|
packages=httpd;
|
|
repos=fedora;
|
|
releasever=27
|
|
EOF
|
|
|
|
# This one has non-root ownership in some of the dependencies, but we shouldn't
|
|
# try to apply them; see apply_rpmfi_overrides().
|
|
rpm-ostree ex container assemble httpd.conf
|
|
ostree --repo=repo ls httpd /usr/sbin/httpd
|