1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 07:15:41 +00:00

Fixed install --partition and added scripts/run-install

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
This commit is contained in:
Sven Dowideit
2017-03-24 12:39:40 +00:00
parent 060390c160
commit 15699a253c
3 changed files with 150 additions and 64 deletions

View File

@@ -62,7 +62,7 @@ func Blkid(label string) (deviceName, deviceType string) {
s := bufio.NewScanner(r)
for s.Scan() {
line := s.Text()
log.Debugf("blkid: %s", cmd, line)
//log.Debugf("blkid: %s", cmd, line)
if !strings.Contains(line, `LABEL="`+label+`"`) {
continue
}