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