summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2022-05-24 08:45:32 -0700
committerMatthew Heon <mheon@redhat.com>2022-06-14 14:19:26 -0400
commitc254ad7f18e16d74ab6eed173421eaadb7f5a921 (patch)
treecc73843923289da497f6aa148fa0b15b37afdeeb
parented9ae4cad88a828d3235d126ed31ac9aa9117a13 (diff)
downloadpodman-c254ad7f18e16d74ab6eed173421eaadb7f5a921.tar.gz
podman-c254ad7f18e16d74ab6eed173421eaadb7f5a921.tar.bz2
podman-c254ad7f18e16d74ab6eed173421eaadb7f5a921.zip
Remove TODO re: storage-driver
Currently this list is not exported from c/storage and the group decided this will not be changed. ```release-note NONE ``` Signed-off-by: Jhon Honce <jhonce@redhat.com>
-rw-r--r--cmd/podman/root.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/root.go b/cmd/podman/root.go
index 2bd4fa723..1892ff9f7 100644
--- a/cmd/podman/root.go
+++ b/cmd/podman/root.go
@@ -423,7 +423,7 @@ func rootFlags(cmd *cobra.Command, opts *entities.PodmanConfig) {
// -s is deprecated due to conflict with -s on subcommands
storageDriverFlagName := "storage-driver"
pFlags.StringVar(&opts.StorageDriver, storageDriverFlagName, "", "Select which storage driver is used to manage storage of images and containers")
- _ = cmd.RegisterFlagCompletionFunc(storageDriverFlagName, completion.AutocompleteNone) //TODO: what can we recommend here?
+ _ = cmd.RegisterFlagCompletionFunc(storageDriverFlagName, completion.AutocompleteNone)
tmpdirFlagName := "tmpdir"
pFlags.StringVar(&opts.Engine.TmpDir, tmpdirFlagName, "", "Path to the tmp directory for libpod state content.\n\nNote: use the environment variable 'TMPDIR' to change the temporary storage location for container images, '/var/tmp'.\n")