From e5fcffc551b42936c635d13658e7d0a9e95d3a16 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Thu, 8 Jul 2021 14:22:33 -0400 Subject: Remove GetStore function from Libpod We should not be exposing the store outside of Libpod. We want to encapsulate it as an internal implementation detail - there's no reason functions outside of Libpod should directly be manipulating container storage. Convert the last use to invoke a method on Libpod instead, and remove the function. [NO TESTS NEEDED] as this is just a refactor. Signed-off-by: Matthew Heon --- libpod/runtime.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'libpod') diff --git a/libpod/runtime.go b/libpod/runtime.go index d31d00ae4..30659a3d4 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -946,9 +946,12 @@ func (r *Runtime) StorageConfig() storage.StoreOptions { return r.storageConfig } -// GetStore returns the runtime stores -func (r *Runtime) GetStore() storage.Store { - return r.store +// RunRoot retrieves the current c/storage temporary directory in use by Libpod. +func (r *Runtime) RunRoot() string { + if r.store == nil { + return "" + } + return r.store.RunRoot() } // GetName retrieves the name associated with a given full ID. -- cgit v1.2.3-54-g00ecf