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
|
package main
import (
"fmt"
"os"
buildahcli "github.com/containers/buildah/pkg/cli"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
func init() {
umountCommand := &cobra.Command{
Use: "umount",
Aliases: []string{"unmount"},
Short: "Unmount the root file system of the specified working containers",
Long: "Unmounts the root file system of the specified working containers.",
RunE: umountCmd,
Example: `buildah umount containerID
buildah umount containerID1 containerID2 containerID3
buildah umount --all`,
}
umountCommand.SetUsageTemplate(UsageTemplate())
flags := umountCommand.Flags()
flags.SetInterspersed(false)
flags.BoolP("all", "a", false, "umount all of the currently mounted containers")
rootCmd.AddCommand(umountCommand)
}
func umountCmd(c *cobra.Command, args []string) error {
umountAll := false
if c.Flag("all").Changed {
umountAll = true
}
umountContainerErrStr := "error unmounting container"
if len(args) == 0 && !umountAll {
return errors.Errorf("at least one container ID must be specified")
}
if len(args) > 0 && umountAll {
return errors.Errorf("when using the --all switch, you may not pass any container IDs")
}
if err := buildahcli.VerifyFlagsArgsOrder(args); err != nil {
return err
}
store, err := getStore(c)
if err != nil {
return err
}
var lastError error
if len(args) > 0 {
for _, name := range args {
builder, err := openBuilder(getContext(), store, name)
if err != nil {
if lastError != nil {
fmt.Fprintln(os.Stderr, lastError)
}
lastError = errors.Wrapf(err, "%s %s", umountContainerErrStr, name)
continue
}
if builder.MountPoint == "" {
continue
}
if err = builder.Unmount(); err != nil {
if lastError != nil {
fmt.Fprintln(os.Stderr, lastError)
}
lastError = errors.Wrapf(err, "%s %q", umountContainerErrStr, builder.Container)
continue
}
fmt.Printf("%s\n", builder.ContainerID)
}
} else {
builders, err := openBuilders(store)
if err != nil {
return errors.Wrapf(err, "error reading build Containers")
}
for _, builder := range builders {
if builder.MountPoint == "" {
continue
}
if err = builder.Unmount(); err != nil {
if lastError != nil {
fmt.Fprintln(os.Stderr, lastError)
}
lastError = errors.Wrapf(err, "%s %q", umountContainerErrStr, builder.Container)
continue
}
fmt.Printf("%s\n", builder.ContainerID)
}
}
return lastError
}
|