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
|
// Copyright (c) Contributors to the Apptainer project, established as
// Apptainer a Series of LF Projects LLC.
// For website terms of use, trademark policy, privacy policy and other
// project policies see https://lfprojects.org/policies
// Copyright (c) 2018-2020, Sylabs Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.
package cli
import (
"github.com/apptainer/apptainer/docs"
"github.com/apptainer/apptainer/internal/app/apptainer"
"github.com/apptainer/apptainer/pkg/cmdline"
"github.com/apptainer/apptainer/pkg/sylog"
"github.com/spf13/cobra"
)
func init() {
addCmdInit(func(cmdManager *cmdline.CommandManager) {
cmdManager.RegisterFlagForCmd(&instanceStartPidFileFlag, instanceStartCmd, instanceRunCmd)
cmdManager.RegisterFlagForCmd(&actionDMTCPLaunchFlag, instanceStartCmd, instanceRunCmd)
cmdManager.RegisterFlagForCmd(&actionDMTCPRestartFlag, instanceStartCmd, instanceRunCmd)
})
}
// --pid-file
var instanceStartPidFile string
var instanceStartPidFileFlag = cmdline.Flag{
ID: "instanceStartPidFileFlag",
Value: &instanceStartPidFile,
DefaultValue: "",
Name: "pid-file",
Usage: "write instance PID to the file with the given name",
EnvKeys: []string{"PID_FILE"},
}
// execute either the instance start or run command
func instanceAction(cmd *cobra.Command, args []string) {
image := args[0]
name := args[1]
cmdName := cmd.Name()
script := "start"
killCont := ""
if cmdName == "run" {
script = "run"
killCont = "kill -CONT 1; "
}
a := append([]string{killCont + "/.singularity.d/actions/" + script}, args[2:]...)
if err := launchContainer(cmd, image, a, name, -1); err != nil {
sylog.Fatalf("%s", err)
}
if instanceStartPidFile != "" {
err := apptainer.WriteInstancePidFile(name, instanceStartPidFile)
if err != nil {
sylog.Warningf("Failed to write pid file: %v", err)
}
}
}
// apptainer instance start
var instanceStartCmd = &cobra.Command{
Args: cobra.MinimumNArgs(2),
PreRun: actionPreRun,
DisableFlagsInUseLine: true,
Run: instanceAction,
Use: docs.InstanceStartUse,
Short: docs.InstanceStartShort,
Long: docs.InstanceStartLong,
Example: docs.InstanceStartExample,
}
// apptainer instance run
var instanceRunCmd = &cobra.Command{
Args: cobra.MinimumNArgs(2),
PreRun: actionPreRun,
DisableFlagsInUseLine: true,
Run: instanceAction,
Use: docs.InstanceRunUse,
Short: docs.InstanceRunShort,
Long: docs.InstanceRunLong,
Example: docs.InstanceRunExample,
}
|