From ba301b0c8d77ae2f455d3a2d736968c981b8c757 Mon Sep 17 00:00:00 2001 From: elijah Date: Sun, 13 Jan 2013 20:27:29 -0800 Subject: added ability to sync support files along with hiera.yml. this way, files don't need to be embedded in hiera.yml. this is especially useful for binary files. --- lib/leap_cli/config/tag.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/leap_cli/config/tag.rb (limited to 'lib/leap_cli/config/tag.rb') diff --git a/lib/leap_cli/config/tag.rb b/lib/leap_cli/config/tag.rb new file mode 100644 index 0000000..e5e719d --- /dev/null +++ b/lib/leap_cli/config/tag.rb @@ -0,0 +1,18 @@ +# +# +# A class for node services or node tags. +# +# + +module LeapCli; module Config + + class Tag < Object + attr_reader :node_list + + def initialize(manager=nil) + super(manager) + @node_list = Config::ObjectList.new + end + end + +end; end -- cgit v1.2.3