2015-07-21 07:56:55 +00:00
|
|
|
package control
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/codegangsta/cli"
|
2015-10-12 11:50:17 +00:00
|
|
|
"github.com/rancher/os/util"
|
2015-07-21 07:56:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func devAction(c *cli.Context) {
|
|
|
|
fmt.Println(util.ResolveDevice(c.Args()[0]))
|
|
|
|
}
|