mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
718cca8055
Follow the precedent set in https://github.com/coreos/rpm-ostree/pull/2106 and rename the directory, to more clearly move away from the "uninstalled" test model. Prep for Rust-based tests.
18 lines
292 B
Bash
Executable File
18 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Test that we didn't regress /etc/ostree/remotes.d handling
|
|
|
|
set -xeuo pipefail
|
|
|
|
. ${KOLA_EXT_DATA}/libinsttest.sh
|
|
date
|
|
|
|
prepare_tmpdir
|
|
trap _tmpdir_cleanup EXIT
|
|
|
|
ostree remote list > remotes.txt
|
|
if ! test -s remotes.txt; then
|
|
assert_not_reached "no ostree remotes"
|
|
fi
|
|
date
|