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 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
|
package main
import (
"fmt"
"io"
"os"
"strings"
"github.com/spf13/cobra"
"gopkg.in/yaml.v2"
"github.com/canonical/lxd/client"
"github.com/canonical/lxd/shared"
"github.com/canonical/lxd/shared/api"
cli "github.com/canonical/lxd/shared/cmd"
"github.com/canonical/lxd/shared/i18n"
"github.com/canonical/lxd/shared/termios"
)
type cmdConfig struct {
global *cmdGlobal
flagTarget string
}
// Command creates a Cobra command for managing instance and server configurations,
// including options for device, edit, get, metadata, profile, set, show, template, trust, and unset.
func (c *cmdConfig) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("config")
cmd.Short = i18n.G("Manage instance and server configuration options")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`Manage instance and server configuration options`))
// Device
configDeviceCmd := cmdConfigDevice{global: c.global, config: c}
cmd.AddCommand(configDeviceCmd.Command())
// Edit
configEditCmd := cmdConfigEdit{global: c.global, config: c}
cmd.AddCommand(configEditCmd.Command())
// Get
configGetCmd := cmdConfigGet{global: c.global, config: c}
cmd.AddCommand(configGetCmd.Command())
// Metadata
configMetadataCmd := cmdConfigMetadata{global: c.global, config: c}
cmd.AddCommand(configMetadataCmd.Command())
// Profile
configProfileCmd := cmdProfile{global: c.global}
profileCmd := configProfileCmd.Command()
profileCmd.Hidden = true
profileCmd.Deprecated = i18n.G("please use `lxc profile`")
cmd.AddCommand(profileCmd)
// Set
configSetCmd := cmdConfigSet{global: c.global, config: c}
cmd.AddCommand(configSetCmd.Command())
// Show
configShowCmd := cmdConfigShow{global: c.global, config: c}
cmd.AddCommand(configShowCmd.Command())
// Template
configTemplateCmd := cmdConfigTemplate{global: c.global, config: c}
cmd.AddCommand(configTemplateCmd.Command())
// Trust
configTrustCmd := cmdConfigTrust{global: c.global, config: c}
cmd.AddCommand(configTrustCmd.Command())
// Unset
configUnsetCmd := cmdConfigUnset{global: c.global, config: c, configSet: &configSetCmd}
cmd.AddCommand(configUnsetCmd.Command())
// Workaround for subcommand usage errors. See: https://github.com/spf13/cobra/issues/706
cmd.Args = cobra.NoArgs
cmd.Run = func(cmd *cobra.Command, args []string) { _ = cmd.Usage() }
return cmd
}
// Edit.
type cmdConfigEdit struct {
global *cmdGlobal
config *cmdConfig
}
// Command creates a Cobra command to edit instance or server configurations using YAML, with optional flags for targeting cluster members.
func (c *cmdConfigEdit) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("edit", i18n.G("[<remote>:][<instance>[/<snapshot>]]"))
cmd.Short = i18n.G("Edit instance or server configurations as YAML")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`Edit instance or server configurations as YAML`))
cmd.Example = cli.FormatSection("", i18n.G(
`lxc config edit <instance> < instance.yaml
Update the instance configuration from config.yaml.`))
cmd.Flags().StringVar(&c.config.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
cmd.RunE = c.Run
return cmd
}
// helpTemplate returns a sample YAML configuration and guidelines for editing instance configurations.
func (c *cmdConfigEdit) helpTemplate() string {
return i18n.G(
`### This is a YAML representation of the configuration.
### Any line starting with a '# will be ignored.
###
### A sample configuration looks like:
### name: instance1
### profiles:
### - default
### config:
### volatile.eth0.hwaddr: 00:16:3e:e9:f8:7f
### devices:
### homedir:
### path: /extra
### source: /home/user
### type: disk
### ephemeral: false
###
### Note that the name is shown but cannot be changed`)
}
// Run executes the config edit command, allowing users to edit instance or server configurations via an interactive YAML editor.
func (c *cmdConfigEdit) Run(cmd *cobra.Command, args []string) error {
// Quick checks.
exit, err := c.global.CheckArgs(cmd, args, 0, 1)
if exit {
return err
}
// Parse remote
remote := ""
if len(args) > 0 {
remote = args[0]
}
resources, err := c.global.ParseServers(remote)
if err != nil {
return err
}
resource := resources[0]
fields := strings.SplitN(resource.name, "/", 2)
isSnapshot := len(fields) == 2
// Edit the config
if resource.name != "" {
// Quick checks.
if c.config.flagTarget != "" {
return fmt.Errorf(i18n.G("--target cannot be used with instances"))
}
// If stdin isn't a terminal, read text from it
if !termios.IsTerminal(getStdinFd()) {
contents, err := io.ReadAll(os.Stdin)
if err != nil {
return err
}
var op lxd.Operation
if isSnapshot {
newdata := api.InstanceSnapshotPut{}
err = yaml.Unmarshal(contents, &newdata)
if err != nil {
return err
}
op, err = resource.server.UpdateInstanceSnapshot(fields[0], fields[1], newdata, "")
if err != nil {
return err
}
} else {
newdata := api.InstancePut{}
err = yaml.Unmarshal(contents, &newdata)
if err != nil {
return err
}
op, err = resource.server.UpdateInstance(resource.name, newdata, "")
if err != nil {
return err
}
}
return op.Wait()
}
var data []byte
var etag string
// Extract the current value
if isSnapshot {
var inst *api.InstanceSnapshot
inst, etag, err = resource.server.GetInstanceSnapshot(fields[0], fields[1])
if err != nil {
return err
}
// Empty expanded config so it isn't shown in edit screen (relies on omitempty tag).
inst.ExpandedConfig = nil
inst.ExpandedDevices = nil
data, err = yaml.Marshal(&inst)
if err != nil {
return err
}
} else {
var inst *api.Instance
inst, etag, err = resource.server.GetInstance(resource.name)
if err != nil {
return err
}
// Empty expanded config so it isn't shown in edit screen (relies on omitempty tag).
inst.ExpandedConfig = nil
inst.ExpandedDevices = nil
data, err = yaml.Marshal(&inst)
if err != nil {
return err
}
}
// Spawn the editor
content, err := shared.TextEditor("", []byte(c.helpTemplate()+"\n\n"+string(data)))
if err != nil {
return err
}
for {
// Parse the text received from the editor
if isSnapshot {
newdata := api.InstanceSnapshotPut{}
err = yaml.Unmarshal(content, &newdata)
if err == nil {
var op lxd.Operation
op, err = resource.server.UpdateInstanceSnapshot(fields[0], fields[1],
newdata, etag)
if err == nil {
err = op.Wait()
}
}
} else {
newdata := api.InstancePut{}
err = yaml.Unmarshal(content, &newdata)
if err == nil {
var op lxd.Operation
op, err = resource.server.UpdateInstance(resource.name, newdata, etag)
if err == nil {
err = op.Wait()
}
}
}
// Respawn the editor
if err != nil {
fmt.Fprintf(os.Stderr, i18n.G("Config parsing error: %s")+"\n", err)
fmt.Println(i18n.G("Press enter to open the editor again or ctrl+c to abort change"))
_, err := os.Stdin.Read(make([]byte, 1))
if err != nil {
return err
}
content, err = shared.TextEditor("", content)
if err != nil {
return err
}
continue
}
break
}
return nil
}
// Targeting
if c.config.flagTarget != "" {
if !resource.server.IsClustered() {
return fmt.Errorf(i18n.G("To use --target, the destination remote must be a cluster"))
}
resource.server = resource.server.UseTarget(c.config.flagTarget)
}
// If stdin isn't a terminal, read text from it
if !termios.IsTerminal(getStdinFd()) {
contents, err := io.ReadAll(os.Stdin)
if err != nil {
return err
}
newdata := api.ServerPut{}
err = yaml.Unmarshal(contents, &newdata)
if err != nil {
return err
}
return resource.server.UpdateServer(newdata, "")
}
// Extract the current value
server, etag, err := resource.server.GetServer()
if err != nil {
return err
}
brief := server.Writable()
data, err := yaml.Marshal(&brief)
if err != nil {
return err
}
// Spawn the editor
content, err := shared.TextEditor("", data)
if err != nil {
return err
}
for {
// Parse the text received from the editor
newdata := api.ServerPut{}
err = yaml.Unmarshal(content, &newdata)
if err == nil {
err = resource.server.UpdateServer(newdata, etag)
}
// Respawn the editor
if err != nil {
fmt.Fprintf(os.Stderr, i18n.G("Config parsing error: %s")+"\n", err)
fmt.Println(i18n.G("Press enter to open the editor again or ctrl+c to abort change"))
_, err := os.Stdin.Read(make([]byte, 1))
if err != nil {
return err
}
content, err = shared.TextEditor("", content)
if err != nil {
return err
}
continue
}
break
}
return nil
}
// Get.
type cmdConfigGet struct {
global *cmdGlobal
config *cmdConfig
flagExpanded bool
flagIsProperty bool
}
// Command creates a Cobra command to fetch values for given instance or server configuration keys,
// with optional flags for expanded configuration and cluster targeting.
func (c *cmdConfigGet) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("get", i18n.G("[<remote>:][<instance>] <key>"))
cmd.Short = i18n.G("Get values for instance or server configuration keys")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`Get values for instance or server configuration keys`))
cmd.Flags().BoolVarP(&c.flagExpanded, "expanded", "e", false, i18n.G("Access the expanded configuration"))
cmd.Flags().BoolVarP(&c.flagIsProperty, "property", "p", false, i18n.G("Get the key as an instance property"))
cmd.Flags().StringVar(&c.config.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
cmd.RunE = c.Run
return cmd
}
// Run fetches and prints the specified configuration key's value for an instance or server, also handling target and expansion flags.
func (c *cmdConfigGet) Run(cmd *cobra.Command, args []string) error {
// Quick checks.
exit, err := c.global.CheckArgs(cmd, args, 1, 2)
if exit {
return err
}
// Parse remote
remote := ""
if len(args) > 1 {
remote = args[0]
}
resources, err := c.global.ParseServers(remote)
if err != nil {
return err
}
resource := resources[0]
fields := strings.SplitN(resource.name, "/", 2)
isSnapshot := len(fields) == 2
// Get the config key
if resource.name != "" {
// Quick checks.
if c.config.flagTarget != "" {
return fmt.Errorf(i18n.G("--target cannot be used with instances"))
}
if isSnapshot {
inst, _, err := resource.server.GetInstanceSnapshot(fields[0], fields[1])
if err != nil {
return err
}
if c.flagIsProperty {
res, err := getFieldByJsonTag(inst, args[len(args)-1])
if err != nil {
return fmt.Errorf(i18n.G("The property %q does not exist on the instance snapshot %s/%s: %v"), args[len(args)-1], fields[0], fields[1], err)
}
fmt.Printf("%v\n", res)
} else {
if c.flagExpanded {
fmt.Println(inst.ExpandedConfig[args[len(args)-1]])
} else {
fmt.Println(inst.Config[args[len(args)-1]])
}
}
return nil
}
resp, _, err := resource.server.GetInstance(resource.name)
if err != nil {
return err
}
if c.flagIsProperty {
w := resp.Writable()
res, err := getFieldByJsonTag(&w, args[len(args)-1])
if err != nil {
return fmt.Errorf(i18n.G("The property %q does not exist on the instance %q: %v"), args[len(args)-1], resource.name, err)
}
fmt.Printf("%v\n", res)
} else {
if c.flagExpanded {
fmt.Println(resp.ExpandedConfig[args[len(args)-1]])
} else {
fmt.Println(resp.Config[args[len(args)-1]])
}
}
} else {
// Quick check.
if c.flagExpanded {
return fmt.Errorf(i18n.G("--expanded cannot be used with a server"))
}
// Targeting
if c.config.flagTarget != "" {
if !resource.server.IsClustered() {
return fmt.Errorf(i18n.G("To use --target, the destination remote must be a cluster"))
}
resource.server = resource.server.UseTarget(c.config.flagTarget)
}
resp, _, err := resource.server.GetServer()
if err != nil {
return err
}
value := resp.Config[args[len(args)-1]]
if value == nil {
value = ""
} else if value == true {
value = "true"
} else if value == false {
value = "false"
}
fmt.Println(value)
}
return nil
}
// Set.
type cmdConfigSet struct {
global *cmdGlobal
config *cmdConfig
flagIsProperty bool
}
// Command creates a new Cobra command to set instance or server configuration keys and returns it.
func (c *cmdConfigSet) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("set", i18n.G("[<remote>:][<instance>] <key>=<value>..."))
cmd.Short = i18n.G("Set instance or server configuration keys")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`Set instance or server configuration keys
For backward compatibility, a single configuration key may still be set with:
lxc config set [<remote>:][<instance>] <key> <value>`))
cmd.Example = cli.FormatSection("", i18n.G(
`lxc config set [<remote>:]<instance> limits.cpu=2
Will set a CPU limit of "2" for the instance.
lxc config set core.https_address=[::]:8443
Will have LXD listen on IPv4 and IPv6 port 8443.
lxc config set core.trust_password=blah
Will set the server's trust password to blah.`))
cmd.Flags().StringVar(&c.config.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
cmd.Flags().BoolVarP(&c.flagIsProperty, "property", "p", false, i18n.G("Set the key as an instance property"))
cmd.RunE = c.Run
return cmd
}
// Run executes the "set" command, updating instance or server configuration keys based on provided arguments.
func (c *cmdConfigSet) Run(cmd *cobra.Command, args []string) error {
// Quick checks.
exit, err := c.global.CheckArgs(cmd, args, 1, -1)
if exit {
return err
}
hasKeyValue := func(args []string) bool {
for _, arg := range args {
if strings.Contains(arg, "=") {
return true
}
}
return false
}
onlyKeyValue := func(args []string) bool {
for _, arg := range args {
if !strings.Contains(arg, "=") {
return false
}
}
return true
}
isConfig := func(value string) bool {
fields := strings.SplitN(value, ":", 2)
key := fields[len(fields)-1]
return strings.Contains(key, ".")
}
// Parse remote
remote := ""
if onlyKeyValue(args) || isConfig(args[0]) {
// server set with: <key>=<value>...
remote = ""
} else if len(args) == 2 && !hasKeyValue(args) {
// server set with: <key> <value>
remote = ""
} else {
remote = args[0]
}
resources, err := c.global.ParseServers(remote)
if err != nil {
return err
}
resource := resources[0]
fields := strings.SplitN(resource.name, "/", 2)
isSnapshot := len(fields) == 2
// Set the config keys
if resource.name != "" {
// Quick checks.
if c.config.flagTarget != "" {
return fmt.Errorf(i18n.G("--target cannot be used with instances"))
}
keys, err := getConfig(args[1:]...)
if err != nil {
return err
}
if isSnapshot {
inst, etag, err := resource.server.GetInstanceSnapshot(fields[0], fields[1])
if err != nil {
return err
}
writable := inst.Writable()
if c.flagIsProperty {
if cmd.Name() == "unset" {
for k := range keys {
err := unsetFieldByJsonTag(&writable, k)
if err != nil {
return fmt.Errorf(i18n.G("Error unsetting properties: %v"), err)
}
}
} else {
err := unpackKVToWritable(&writable, keys)
if err != nil {
return fmt.Errorf(i18n.G("Error setting properties: %v"), err)
}
}
op, err := resource.server.UpdateInstanceSnapshot(fields[0], fields[1], writable, etag)
if err != nil {
return err
}
return op.Wait()
} else {
return fmt.Errorf(i18n.G("The is no config key to set on an instance snapshot."))
}
}
inst, etag, err := resource.server.GetInstance(resource.name)
if err != nil {
return err
}
writable := inst.Writable()
if c.flagIsProperty {
if cmd.Name() == "unset" {
for k := range keys {
err := unsetFieldByJsonTag(&writable, k)
if err != nil {
return fmt.Errorf(i18n.G("Error unsetting properties: %v"), err)
}
}
} else {
err := unpackKVToWritable(&writable, keys)
if err != nil {
return fmt.Errorf(i18n.G("Error setting properties: %v"), err)
}
}
} else {
for k, v := range keys {
if cmd.Name() == "unset" {
_, ok := writable.Config[k]
if !ok {
return fmt.Errorf(i18n.G("Can't unset key '%s', it's not currently set"), k)
}
delete(writable.Config, k)
} else {
writable.Config[k] = v
}
}
}
op, err := resource.server.UpdateInstance(resource.name, writable, etag)
if err != nil {
return err
}
return op.Wait()
}
// Targeting
if c.config.flagTarget != "" {
if !resource.server.IsClustered() {
return fmt.Errorf(i18n.G("To use --target, the destination remote must be a cluster"))
}
resource.server = resource.server.UseTarget(c.config.flagTarget)
}
// Server keys
server, etag, err := resource.server.GetServer()
if err != nil {
return err
}
var keys map[string]string
if remote == "" {
keys, err = getConfig(args[0:]...)
if err != nil {
return err
}
} else {
keys, err = getConfig(args[1:]...)
if err != nil {
return err
}
}
if server.Config == nil {
server.Config = map[string]any{}
}
for k, v := range keys {
server.Config[k] = v
}
return resource.server.UpdateServer(server.Writable(), etag)
}
// Show.
type cmdConfigShow struct {
global *cmdGlobal
config *cmdConfig
flagExpanded bool
}
// Command sets up the "show" command, which displays instance or server configurations based on the provided arguments.
func (c *cmdConfigShow) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("show", i18n.G("[<remote>:][<instance>[/<snapshot>]]"))
cmd.Short = i18n.G("Show instance or server configurations")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`Show instance or server configurations`))
cmd.Flags().BoolVarP(&c.flagExpanded, "expanded", "e", false, i18n.G("Show the expanded configuration"))
cmd.Flags().StringVar(&c.config.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
cmd.RunE = c.Run
return cmd
}
// Run executes the "show" command, displaying the YAML-formatted configuration of a specified server or instance.
func (c *cmdConfigShow) Run(cmd *cobra.Command, args []string) error {
// Quick checks.
exit, err := c.global.CheckArgs(cmd, args, 0, 1)
if exit {
return err
}
// Parse remote
remote := ""
if len(args) > 0 {
remote = args[0]
}
resources, err := c.global.ParseServers(remote)
if err != nil {
return err
}
resource := resources[0]
// Show configuration
var data []byte
if resource.name == "" {
// Quick check.
if c.flagExpanded {
return fmt.Errorf(i18n.G("--expanded cannot be used with a server"))
}
// Targeting
if c.config.flagTarget != "" {
if !resource.server.IsClustered() {
return fmt.Errorf(i18n.G("To use --target, the destination remote must be a cluster"))
}
resource.server = resource.server.UseTarget(c.config.flagTarget)
}
// Server config
server, _, err := resource.server.GetServer()
if err != nil {
return err
}
brief := server.Writable()
data, err = yaml.Marshal(&brief)
if err != nil {
return err
}
} else {
// Quick checks.
if c.config.flagTarget != "" {
return fmt.Errorf(i18n.G("--target cannot be used with instances"))
}
// Instance or snapshot config
var brief any
if shared.IsSnapshot(resource.name) {
// Snapshot
fields := strings.Split(resource.name, shared.SnapshotDelimiter)
snap, _, err := resource.server.GetInstanceSnapshot(fields[0], fields[1])
if err != nil {
return err
}
brief = snap
if c.flagExpanded {
brief.(*api.InstanceSnapshot).Config = snap.ExpandedConfig
brief.(*api.InstanceSnapshot).Devices = snap.ExpandedDevices
}
} else {
// Instance
inst, _, err := resource.server.GetInstance(resource.name)
if err != nil {
return err
}
writable := inst.Writable()
brief = &writable
if c.flagExpanded {
brief.(*api.InstancePut).Config = inst.ExpandedConfig
brief.(*api.InstancePut).Devices = inst.ExpandedDevices
}
}
data, err = yaml.Marshal(&brief)
if err != nil {
return err
}
}
fmt.Printf("%s", data)
return nil
}
// Unset.
type cmdConfigUnset struct {
global *cmdGlobal
config *cmdConfig
configSet *cmdConfigSet
flagIsProperty bool
}
// Command generates a new "unset" command to remove specific configuration keys for an instance or server.
func (c *cmdConfigUnset) Command() *cobra.Command {
cmd := &cobra.Command{}
cmd.Use = usage("unset", i18n.G("[<remote>:][<instance>] <key>"))
cmd.Short = i18n.G("Unset instance or server configuration keys")
cmd.Long = cli.FormatSection(i18n.G("Description"), i18n.G(
`Unset instance or server configuration keys`))
cmd.Flags().StringVar(&c.config.flagTarget, "target", "", i18n.G("Cluster member name")+"``")
cmd.Flags().BoolVarP(&c.flagIsProperty, "property", "p", false, i18n.G("Unset the key as an instance property"))
cmd.RunE = c.Run
return cmd
}
// Run executes the "unset" command, delegating to the "set" command to remove specific configuration keys.
func (c *cmdConfigUnset) Run(cmd *cobra.Command, args []string) error {
// Quick checks.
exit, err := c.global.CheckArgs(cmd, args, 1, 2)
if exit {
return err
}
c.configSet.flagIsProperty = c.flagIsProperty
args = append(args, "")
return c.configSet.Run(cmd, args)
}
|