1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
|
// -*- Mode: Go; indent-tabs-mode: t -*-
//go:build !nosecboot
// +build !nosecboot
/*
* Copyright (C) 2022-2024 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package main
import (
"bytes"
"encoding/json"
"errors"
"flag"
"fmt"
"os"
"os/exec"
"path/filepath"
"sort"
"strconv"
"strings"
"time"
"github.com/snapcore/snapd/client"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/gadget"
"github.com/snapcore/snapd/gadget/device"
"github.com/snapcore/snapd/gadget/install"
"github.com/snapcore/snapd/gadget/quantity"
"github.com/snapcore/snapd/logger"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/osutil/disks"
"github.com/snapcore/snapd/osutil/mkfs"
)
func waitForDevice() string {
for {
devices, err := emptyFixedBlockDevices()
if err != nil {
logger.Noticef("cannot list devices: %v", err)
}
switch len(devices) {
case 0:
logger.Noticef("cannot use automatic mode, no empty disk found")
case 1:
// found exactly one target
return devices[0]
default:
logger.Noticef("cannot use automatic mode, multiple empty disks found: %v", devices)
}
time.Sleep(5 * time.Second)
}
}
// emptyFixedBlockDevices finds any non-removable physical disk that has
// no partitions. It will exclude loop devices.
func emptyFixedBlockDevices() (devices []string, err error) {
// eg. /sys/block/sda/removable
removable, err := filepath.Glob(filepath.Join(dirs.GlobalRootDir, "/sys/block/*/removable"))
if err != nil {
return nil, err
}
devicesLoop:
for _, removableAttr := range removable {
val, err := os.ReadFile(removableAttr)
if err != nil || string(val) != "0\n" {
// removable, ignore
continue
}
dev := filepath.Base(filepath.Dir(removableAttr))
if strings.HasPrefix(dev, "loop") {
// is loop device, ignore
continue
}
// let's see if it has partitions
pattern := fmt.Sprintf(filepath.Join(dirs.GlobalRootDir, "/sys/block/%s/%s*/partition"), dev, dev)
// eg. /sys/block/sda/sda1/partition
partitionAttrs, _ := filepath.Glob(pattern)
if len(partitionAttrs) != 0 {
// has partitions, ignore
continue
}
// check that there was no previous filesystem
devNode := fmt.Sprintf("/dev/%s", dev)
output, stderr, err := osutil.RunSplitOutput("lsblk", "--output", "fstype", "--noheadings", devNode)
if err != nil {
return nil, osutil.OutputErrCombine(output, stderr, err)
}
if strings.TrimSpace(string(output)) != "" {
// found a filesystem, ignore
continue devicesLoop
}
devices = append(devices, devNode)
}
sort.Strings(devices)
return devices, nil
}
func firstVol(volumes map[string]*gadget.Volume) *gadget.Volume {
for _, vol := range volumes {
return vol
}
return nil
}
func maybeCreatePartitionTable(bootDevice, schema string) error {
switch schema {
case "dos":
return fmt.Errorf("cannot use partition schema %v yet", schema)
case "gpt":
// ok
default:
return fmt.Errorf("cannot use unknown partition schema %v", schema)
}
// check if there is a GPT partition table already
output, stderr, err := osutil.RunSplitOutput("blkid", "--probe", "--match-types", "gpt", bootDevice)
exitCode, err := osutil.ExitCode(err)
if err != nil {
return err
}
switch exitCode {
case 0:
// partition table already exists, nothing to do
case 2:
// no match found, create partition table
cmd := exec.Command("sfdisk", bootDevice)
cmd.Stdin = bytes.NewBufferString("label: gpt\n")
if output, stderr, err := osutil.RunCmd(cmd); err != nil {
return osutil.OutputErrCombine(output, stderr, err)
}
// ensure udev is aware of the new attributes
if output, stderr, err := osutil.RunSplitOutput("udevadm", "settle"); err != nil {
return osutil.OutputErrCombine(output, stderr, err)
}
default:
// unknown error
return fmt.Errorf("unexpected exit code from blkid: %v", osutil.OutputErrCombine(output, stderr, err))
}
return nil
}
func createPartitions(bootDevice string, volumes map[string]*gadget.Volume) ([]*gadget.OnDiskAndGadgetStructurePair, error) {
vol := firstVol(volumes)
// snapd does not create partition tables so we have to do it here
// or gadget.OnDiskVolumeFromDevice() will fail
if err := maybeCreatePartitionTable(bootDevice, vol.Schema); err != nil {
return nil, err
}
diskLayout, err := gadget.OnDiskVolumeFromDevice(bootDevice)
if err != nil {
return nil, fmt.Errorf("cannot read %v partitions: %v", bootDevice, err)
}
if len(diskLayout.Structure) > 0 && !vol.HasPartial(gadget.PartialStructure) {
return nil, fmt.Errorf("cannot yet install on a disk that has partitions")
}
opts := &install.CreateOptions{CreateAllMissingPartitions: true}
// Fill index, as it is not passed around to muinstaller
for i := range vol.Structure {
vol.Structure[i].YamlIndex = i
}
created, err := install.CreateMissingPartitions(diskLayout, vol, opts)
if err != nil {
return nil, fmt.Errorf("cannot create partitions: %v", err)
}
logger.Noticef("created %d partitions", len(created))
return created, nil
}
func runMntFor(label string) string {
return filepath.Join(dirs.GlobalRootDir, "/run/muinstaller-mnt/", label)
}
type volumeAuthOptions struct {
passphrase string
kdfType string
kdfTime time.Duration
}
func postSystemsInstallSetupStorageEncryption(cli *client.Client,
details *client.SystemDetails, bootDevice string,
dgpairs []*gadget.OnDiskAndGadgetStructurePair,
volumesAuth volumeAuthOptions) (map[string]string, error) {
// We are modifiying the details struct here
for _, gadgetVol := range details.Volumes {
for i := range gadgetVol.Structure {
switch gadgetVol.Structure[i].Role {
case "system-save", "system-data":
// only roles for which we will want encryption
default:
continue
}
gadgetVol.Structure[i].Device = nodeForPartLabel(dgpairs, gadgetVol.Structure[i].Name)
}
}
// Storage encryption makes specified partitions encrypted
opts := &client.InstallSystemOptions{
Step: client.InstallStepSetupStorageEncryption,
OnVolumes: details.Volumes,
}
if volumesAuth.passphrase != "" {
opts.VolumesAuth = &device.VolumesAuthOptions{
Mode: device.AuthModePassphrase,
Passphrase: volumesAuth.passphrase,
KDFType: volumesAuth.kdfType,
KDFTime: volumesAuth.kdfTime,
}
}
chgId, err := cli.InstallSystem(details.Label, opts)
if err != nil {
return nil, err
}
fmt.Printf("Change %s created\n", chgId)
if err := waitChange(chgId); err != nil {
return nil, err
}
chg, err := cli.Change(chgId)
if err != nil {
return nil, err
}
var encryptedDevices = make(map[string]string)
if err := chg.Get("encrypted-devices", &encryptedDevices); err != nil {
return nil, fmt.Errorf("cannot get encrypted-devices from change: %v", err)
}
return encryptedDevices, nil
}
// XXX: reuse/extract cmd/snap/wait.go:waitMixin()
func waitChange(chgId string) error {
cli := client.New(nil)
for {
chg, err := cli.Change(chgId)
if err != nil {
return err
}
if chg.Err != "" {
return errors.New(chg.Err)
}
if chg.Ready {
return nil
}
time.Sleep(1 * time.Second)
}
}
// nodeForPartLabel returns the node where a gadget structure is expected to be.
func nodeForPartLabel(dgpairs []*gadget.OnDiskAndGadgetStructurePair, name string) string {
for _, pair := range dgpairs {
// Same partition label
if pair.GadgetStructure.Name == name {
return pair.DiskStructure.Node
}
}
return ""
}
// TODO laidoutStructs is used to get the devices, when encryption is
// happening maybe we need to find the information differently.
func postSystemsInstallFinish(cli *client.Client,
details *client.SystemDetails, bootDevice string, optionalInstallPath string,
dgpairs []*gadget.OnDiskAndGadgetStructurePair) error {
vols := make(map[string]*gadget.Volume)
for volName, gadgetVol := range details.Volumes {
for i := range gadgetVol.Structure {
// TODO mbr is special, what is the device for that?
if gadgetVol.Structure[i].Role == "mbr" {
gadgetVol.Structure[i].Device = bootDevice
continue
}
gadgetVol.Structure[i].Device = nodeForPartLabel(dgpairs, gadgetVol.Structure[i].Name)
logger.Debugf("partition to install: %q", gadgetVol.Structure[i].Device)
}
vols[volName] = gadgetVol
}
optionalInstall, err := maybeGetOptionalInstall(optionalInstallPath)
if err != nil {
return err
}
// Finish steps does the writing of assets
opts := &client.InstallSystemOptions{
Step: client.InstallStepFinish,
OnVolumes: vols,
OptionalInstall: optionalInstall,
}
chgId, err := cli.InstallSystem(details.Label, opts)
if err != nil {
return err
}
fmt.Printf("Change %s created\n", chgId)
return waitChange(chgId)
}
func maybeGetOptionalInstall(path string) (*client.OptionalInstallRequest, error) {
if path == "" {
return nil, nil
}
f, err := os.Open(path)
if err != nil {
return nil, err
}
defer f.Close()
var req client.OptionalInstallRequest
if err := json.NewDecoder(f).Decode(&req); err != nil {
return nil, err
}
return &req, nil
}
// createAndMountFilesystems creates and mounts filesystems. It returns
// an slice with the paths where the filesystems have been mounted to.
func createAndMountFilesystems(bootDevice string, volumes map[string]*gadget.Volume, encryptedDevices map[string]string) ([]string, error) {
// only support a single volume for now
if len(volumes) != 1 {
return nil, fmt.Errorf("got unexpected number of volumes %v", len(volumes))
}
// XXX: make this more elegant
shouldEncrypt := len(encryptedDevices) > 0
disk, err := disks.DiskFromDeviceName(bootDevice)
if err != nil {
return nil, err
}
vol := firstVol(volumes)
var mountPoints []string
for _, volStruct := range vol.Structure {
if volStruct.Filesystem == "" {
continue
}
var partNode string
if shouldEncrypt && (volStruct.Role == gadget.SystemSave || volStruct.Role == gadget.SystemData) {
encryptedDevice := encryptedDevices[volStruct.Role]
if encryptedDevice == "" {
return nil, fmt.Errorf("no encrypted device found for %s role", volStruct.Role)
}
partNode = encryptedDevice
} else {
part, err := disk.FindMatchingPartitionWithPartLabel(volStruct.Name)
if err != nil {
return nil, err
}
partNode = part.KernelDeviceNode
}
logger.Debugf("making filesystem in %q", partNode)
if err := mkfs.Make(volStruct.Filesystem, partNode, volStruct.Label, 0, 0); err != nil {
return nil, err
}
// Mount filesystem
// XXX: reuse gadget/install/content.go:mountFilesystem()
// instead (it will also call udevadm)
mountPoint := runMntFor(volStruct.Label)
if err := os.MkdirAll(mountPoint, 0755); err != nil {
return nil, err
}
// XXX: is there a better way?
if output, stderr, err := osutil.RunSplitOutput("mount", partNode, mountPoint); err != nil {
return nil, osutil.OutputErrCombine(output, stderr, err)
}
mountPoints = append(mountPoints, mountPoint)
}
return mountPoints, nil
}
func unmountFilesystems(mntPts []string) (err error) {
for _, mntPt := range mntPts {
// We try to unmount all mount points, and return the
// last error if any.
if output, stderr, errUmnt := osutil.RunSplitOutput("umount", mntPt); err != nil {
errUmnt = osutil.OutputErrCombine(output, stderr, errUmnt)
logger.Noticef("error: cannot unmount %q: %v", mntPt, errUmnt)
err = errUmnt
}
}
return err
}
func createClassicRootfsIfNeeded(rootfsCreator string) error {
dst := runMntFor("ubuntu-data")
if output, stderr, err := osutil.RunSplitOutput(rootfsCreator, dst); err != nil {
return osutil.OutputErrCombine(output, stderr, err)
}
return nil
}
func copySeedDir(src, dst string) error {
if err := os.MkdirAll(filepath.Dir(dst), 0755); err != nil {
return err
}
// Note that we do not use the -a option as cp returns an error if trying to
// preserve attributes in a fat filesystem. And this is fine for files from
// the seed, that do not need anything too special in that regard.
if output, stderr, err := osutil.RunSplitOutput("cp", "-r", src, dst); err != nil {
return osutil.OutputErrCombine(output, stderr, err)
}
return nil
}
func copySeedToDataPartition() error {
src := dirs.SnapSeedDir
dataMnt := runMntFor("ubuntu-data")
dst := dirs.SnapSeedDirUnder(dataMnt)
// Remove any existing seed on the target fs and then put the
// selected seed in place on the target
if err := os.RemoveAll(dst); err != nil {
return err
}
return copySeedDir(src, dst)
}
func detectStorageEncryption(seedLabel string, volumesAuth volumeAuthOptions) (bool, error) {
cli := client.New(nil)
details, err := cli.SystemDetails(seedLabel)
if err != nil {
return false, err
}
logger.Noticef("detect encryption: %+v", details.StorageEncryption)
if details.StorageEncryption.Support == client.StorageEncryptionSupportDefective {
return false, errors.New(details.StorageEncryption.UnavailableReason)
}
if volumesAuth.passphrase != "" {
passphraseAuthAvailable := false
for _, feat := range details.StorageEncryption.Features {
if feat == client.StorageEncryptionFeaturePassphraseAuth {
passphraseAuthAvailable = true
break
}
}
if !passphraseAuthAvailable {
return false, errors.New("--passphrase specified but snapd support for passphrases is missing")
}
}
return details.StorageEncryption.Support == client.StorageEncryptionSupportAvailable, nil
}
// fillPartiallyDefinedVolume fills partial gadget information by
// looking at the provided disk. Schema, filesystems, and sizes are
// filled. If partial structure is set, to remove it we would need to
// add to the volume the existing partitions present on the disk but
// not in the gadget. But as snapd is fine with these partitions as
// far as partial strucuture is defined, we just do nothing.
func fillPartiallyDefinedVolume(vol *gadget.Volume, bootDevice string) error {
if len(vol.Partial) == 0 {
return nil
}
logger.Noticef("partial gadget for: %q", vol.Partial)
if vol.HasPartial(gadget.PartialSchema) && vol.Schema == "" {
vol.Schema = "gpt"
logger.Debugf("volume %q schema set to %q", vol.Name, vol.Schema)
}
if vol.HasPartial(gadget.PartialFilesystem) {
for sidx := range vol.Structure {
s := &vol.Structure[sidx]
if s.HasFilesystem() && s.Filesystem == "" {
switch s.Role {
case gadget.SystemSeed, gadget.SystemSeedNull:
s.Filesystem = "vfat"
default:
s.Filesystem = "ext4"
}
logger.Debugf("%q filesystem set to %s", s.Name, s.Filesystem)
}
}
}
// Fill sizes: for the moment, to avoid complicating unnecessarily the
// code, we do size=min-size except for the last partition.
output, stderr, err := osutil.RunSplitOutput("lsblk", "--bytes", "--noheadings", "--output", "SIZE", bootDevice)
exitCode, err := osutil.ExitCode(err)
if err != nil {
return err
}
if exitCode != 0 {
return fmt.Errorf("cannot find size of %q: %q (stderr: %s)", bootDevice, string(output), string(stderr))
}
lines := strings.Split(string(output), "\n")
if len(lines) == 0 {
return fmt.Errorf("error splitting %q (stderr: %s)", string(output), string(stderr))
}
diskSize, err := strconv.Atoi(lines[0])
if err != nil {
return fmt.Errorf("while converting %s to a size: %v (stderr: %s)", string(output), err, string(stderr))
}
partStart := quantity.Offset(0)
if vol.HasPartial(gadget.PartialSize) {
lastIdx := len(vol.Structure) - 1
for sidx := range vol.Structure {
s := &vol.Structure[sidx]
if s.Offset != nil {
partStart = *s.Offset
}
if s.Size == 0 {
if sidx == lastIdx {
// Last partition, give it all remaining space
// (except space for secondary GPT header).
s.Size = quantity.Size(diskSize) - quantity.Size(partStart) - 6*4096
} else {
s.Size = s.MinSize
}
logger.Debugf("size of %q set to %d", s.Name, s.Size)
}
if s.Offset == nil {
offset := partStart
s.Offset = &offset
logger.Debugf("offset of %q set to %d", s.Name, *s.Offset)
}
partStart += quantity.Offset(s.Size)
}
}
return nil
}
func run(seedLabel, bootDevice, rootfsCreator, optionalInstallPath, recoveryKeyOut string, volumesAuth volumeAuthOptions) error {
logger.Noticef("installing on %q", bootDevice)
cli := client.New(nil)
details, err := cli.SystemDetails(seedLabel)
if err != nil {
return err
}
shouldEncrypt, err := detectStorageEncryption(seedLabel, volumesAuth)
if err != nil {
return err
}
// TODO: support multiple volumes, see gadget/install/install.go
if len(details.Volumes) != 1 {
return fmt.Errorf("gadget defines %v volumes, while we support only one at the moment", len(details.Volumes))
}
// If partial gadget, fill missing information based on the installation target
if err := fillPartiallyDefinedVolume(firstVol(details.Volumes), bootDevice); err != nil {
return err
}
// TODO: grow the data-partition based on disk size
dgpairs, err := createPartitions(bootDevice, details.Volumes)
if err != nil {
return fmt.Errorf("cannot setup partitions: %v", err)
}
var encryptedDevices = make(map[string]string)
if shouldEncrypt {
encryptedDevices, err = postSystemsInstallSetupStorageEncryption(cli, details, bootDevice, dgpairs, volumesAuth)
if err != nil {
return fmt.Errorf("cannot setup storage encryption: %v", err)
}
if recoveryKeyOut != "" {
rkey, err := cli.GeneratePreInstallRecoveryKey(seedLabel)
if err != nil {
return fmt.Errorf("cannot generate recovery key: %v", err)
}
logger.Debugf("writing generated recovery key at %q", recoveryKeyOut)
if err := os.WriteFile(recoveryKeyOut, []byte(rkey), 0644); err != nil {
return fmt.Errorf("cannot write generated recovery key at %q: %v", recoveryKeyOut, err)
}
}
}
mntPts, err := createAndMountFilesystems(bootDevice, details.Volumes, encryptedDevices)
if err != nil {
return fmt.Errorf("cannot create filesystems: %v", err)
}
hasSystemSeed := checkForRole(details, gadget.SystemSeed)
isCore := rootfsCreator == ""
if isCore || !hasSystemSeed {
if err := copySeedToDataPartition(); err != nil {
return fmt.Errorf("cannot create seed on data partition: %v", err)
}
}
if !isCore {
if err := createClassicRootfsIfNeeded(rootfsCreator); err != nil {
return fmt.Errorf("cannot create classic rootfs: %v", err)
}
}
if err := unmountFilesystems(mntPts); err != nil {
return fmt.Errorf("cannot unmount filesystems: %v", err)
}
if err := postSystemsInstallFinish(cli, details, bootDevice, optionalInstallPath, dgpairs); err != nil {
return fmt.Errorf("cannot finalize install: %v", err)
}
// TODO: reboot here automatically (optional)
return nil
}
func checkForRole(details *client.SystemDetails, role string) bool {
for _, v := range details.Volumes {
for _, vs := range v.Structure {
if vs.Role == role {
return true
}
}
}
return false
}
func main() {
seedLabel := flag.String("label", "", "seed label (required)")
bootDevice := flag.String("device", "", "target device (required)")
rootfsCreator := flag.String("rootfs-creator", "", "rootfs creator (optional). If specified, classic Ubuntu with core boot will be installed.\nOtherwise, Ubuntu Core will be installed")
optionalInstallPath := flag.String("optional", "", "path to optional snaps and components JSON file (optional)")
passphrase := flag.String("passphrase", "", "encryption passphrase (optional). If specified and encryption is suppported, passphrase authentication will be enabled")
kdfType := flag.String("kdf-type", "", "KDF type for passphrase [\"argon2id\", \"argon2i\" or \"pbkdf2\"] (optional)")
kdfTime := flag.Duration("kdf-time", 0, "length of time to run the KDF (optional)")
recoveryKeyOut := flag.String("recovery-key-out", "", "indicate that a recovery key should be created and stored at given path (optional)")
flag.Parse()
if *seedLabel == "" || *bootDevice == "" {
flag.Usage()
os.Exit(1)
}
logger.SimpleSetup(nil)
if *bootDevice == "auto" {
*bootDevice = waitForDevice()
}
volumesAuth := volumeAuthOptions{
passphrase: *passphrase,
kdfType: *kdfType,
kdfTime: *kdfTime,
}
if err := run(*seedLabel, *bootDevice, *rootfsCreator, *optionalInstallPath, *recoveryKeyOut, volumesAuth); err != nil {
fmt.Fprintf(os.Stderr, "%s\n", err)
os.Exit(1)
}
msg := "install done, please remove installation media and reboot"
fmt.Println(msg)
exec.Command("wall", msg).Run()
}
|