mirror of
https://github.com/containers/podman.git
synced 2025-06-26 04:46:57 +08:00
Merge pull request #11202 from chuanchang/fix_issue_11201
e2e tests: fix overlay: Unknown option vfs.imagestore
This commit is contained in:
@ -264,6 +264,11 @@ func PodmanTestCreateUtil(tempDir string, remote bool) *PodmanTestIntegration {
|
|||||||
if rootless.IsRootless() {
|
if rootless.IsRootless() {
|
||||||
storageFs = ROOTLESS_STORAGE_FS
|
storageFs = ROOTLESS_STORAGE_FS
|
||||||
}
|
}
|
||||||
|
if os.Getenv("STORAGE_FS") != "" {
|
||||||
|
storageFs = os.Getenv("STORAGE_FS")
|
||||||
|
storageOptions = "--storage-driver " + storageFs
|
||||||
|
}
|
||||||
|
|
||||||
p := &PodmanTestIntegration{
|
p := &PodmanTestIntegration{
|
||||||
PodmanTest: PodmanTest{
|
PodmanTest: PodmanTest{
|
||||||
PodmanBinary: podmanBinary,
|
PodmanBinary: podmanBinary,
|
||||||
|
Reference in New Issue
Block a user