Honor storage-driver flag

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
This commit is contained in:
Matthew Heon 2018-01-28 10:08:48 -05:00
parent d4d3f38018
commit aa5798d28f
2 changed files with 5 additions and 5 deletions

View File

@ -45,6 +45,4 @@ jobs:
- make integration
go: 1.8.x
# Turn off notifications until we have our own channel (After rename)
# notifications:
irc: "chat.freenode.net#podman"
irc: "chat.freenode.net#podman"

View File

@ -11,7 +11,7 @@ func getRuntime(c *cli.Context) (*libpod.Runtime, error) {
options := []libpod.RuntimeOption{}
if c.GlobalIsSet("root") || c.GlobalIsSet("runroot") ||
c.GlobalIsSet("storage-opt") {
c.GlobalIsSet("storage-opt") || c.GlobalIsSet("storage-driver") {
storageOpts := storage.DefaultStoreOptions
if c.GlobalIsSet("root") {
@ -20,7 +20,9 @@ func getRuntime(c *cli.Context) (*libpod.Runtime, error) {
if c.GlobalIsSet("runroot") {
storageOpts.RunRoot = c.GlobalString("runroot")
}
// TODO add CLI option to set graph driver
if c.GlobalIsSet("storage-driver") {
storageOpts.GraphDriverName = c.GlobalString("storage-driver")
}
if c.GlobalIsSet("storage-opt") {
storageOpts.GraphDriverOptions = c.GlobalStringSlice("storage-opt")
}