summaryrefslogtreecommitdiff
path: root/chef/lib/chef/knife/node_edit.rb
diff options
context:
space:
mode:
authorAdam Jacob <adam@opscode.com>2009-12-03 01:43:04 -0800
committerAdam Jacob <adam@opscode.com>2009-12-03 01:43:04 -0800
commit582296b259cb9156332173ca654223ea4ca7c117 (patch)
treef2a22c2cda52ef5101c0c6defeaf9b31409de557 /chef/lib/chef/knife/node_edit.rb
parentaa9e71ea425ed25ccb2a5c8b30f950160909c018 (diff)
downloadchef-582296b259cb9156332173ca654223ea4ca7c117.tar.gz
CHEF-670, Node functions all working
Diffstat (limited to 'chef/lib/chef/knife/node_edit.rb')
-rw-r--r--chef/lib/chef/knife/node_edit.rb69
1 files changed, 69 insertions, 0 deletions
diff --git a/chef/lib/chef/knife/node_edit.rb b/chef/lib/chef/knife/node_edit.rb
new file mode 100644
index 0000000000..834718d682
--- /dev/null
+++ b/chef/lib/chef/knife/node_edit.rb
@@ -0,0 +1,69 @@
+#
+# Author:: Adam Jacob (<adam@opscode.com>)
+# Copyright:: Copyright (c) 2009 Opscode, Inc.
+# License:: Apache License, Version 2.0
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+require 'chef/knife'
+require 'chef/node'
+require 'json'
+
+class Chef
+ class Knife
+ class NodeEdit < Knife
+
+ banner "Sub-Command: node edit NODE (options)"
+
+ option :attribute,
+ :short => "-a [ATTR]",
+ :long => "--attribute [ATTR]",
+ :description => "Edit only one attribute"
+
+ def run
+ node = Chef::Node.load(@name_args[0])
+
+ if config[:attribute]
+ attr_bits = config[:attribute].split(".")
+ to_edit = node
+ attr_bits.each do |attr|
+ to_edit = to_edit[attr]
+ end
+
+ edited_data = edit_data(to_edit)
+
+ walker = node
+ attr_bits.each_index do |i|
+ if (attr_bits.length - 1) == i
+ walker[attr_bits[i]] = edited_data
+ else
+ walker = walker[attr_bits[i]]
+ end
+ end
+ new_node = node
+ else
+ new_node = edit_data(node)
+ end
+
+ new_node.save
+
+ Chef::Log.info("Saved #{new_node}")
+
+ json_pretty_print(format_for_display(node)) if config[:print_after]
+ end
+ end
+ end
+end
+
+