(_ *cobra.Command, _ []string)
| 104 | } |
| 105 | |
| 106 | func stop(_ *cobra.Command, _ []string) { |
| 107 | if marker := os.Getenv("PROVIDER_STOP_MARKER"); marker != "" { |
| 108 | _ = os.WriteFile(marker, []byte("stopped"), 0o600) |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | func metadataCommand(upCmd, downCmd, stopCmd *cobra.Command) *cobra.Command { |
| 113 | return &cobra.Command{ |