1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package install
- import (
- "os"
- "os/exec"
- "path/filepath"
- "strings"
- "github.com/rancher/os/config"
- "github.com/rancher/os/log"
- "github.com/rancher/os/util"
- )
- const BootDir = "boot/"
- type MenuEntry struct {
- Name, BootDir, Version, KernelArgs, Append string
- }
- type BootVars struct {
- BaseName, BootDir string
- Timeout uint
- Fallback int
- Entries []MenuEntry
- }
- func MountDevice(baseName, device, partition string, raw bool) (string, string, error) {
- log.Debugf("mountdevice %s, raw %v", partition, raw)
- if partition == "" {
- if raw {
- log.Debugf("util.Mount (raw) %s, %s", partition, baseName)
- cmd := exec.Command("lsblk", "-no", "pkname", partition)
- log.Debugf("Run(%v)", cmd)
- cmd.Stderr = os.Stderr
- device := ""
- // TODO: out can == "" - this is used to "detect software RAID" which is terrible
- if out, err := cmd.Output(); err == nil {
- device = "/dev/" + strings.TrimSpace(string(out))
- }
- log.Debugf("mountdevice return -> d: %s, p: %s", device, partition)
- return device, partition, util.Mount(partition, baseName, "", "")
- }
- //rootfs := partition
- // Don't use ResolveDevice - it can fail, whereas `blkid -L LABEL` works more often
- cfg := config.LoadConfig()
- if d, _ := util.Blkid("RANCHER_BOOT"); d != "" {
- partition = d
- baseName = filepath.Join(baseName, BootDir)
- } else {
- if dev := util.ResolveDevice(cfg.Rancher.State.Dev); dev != "" {
- // try the rancher.state.dev setting
- partition = dev
- } else {
- if d, _ := util.Blkid("RANCHER_STATE"); d != "" {
- partition = d
- }
- }
- }
- cmd := exec.Command("lsblk", "-no", "pkname", partition)
- log.Debugf("Run(%v)", cmd)
- cmd.Stderr = os.Stderr
- // TODO: out can == "" - this is used to "detect software RAID" which is terrible
- if out, err := cmd.Output(); err == nil {
- device = "/dev/" + strings.TrimSpace(string(out))
- }
- }
- os.MkdirAll(baseName, 0755)
- cmd := exec.Command("mount", partition, baseName)
- //cmd.Stdout, cmd.Stderr = os.Stdout, os.Stderr
- log.Debugf("mountdevice return2 -> d: %s, p: %s", device, partition)
- return device, partition, cmd.Run()
- }
|