# File lib/puppet/node.rb, line 111
111:   def split_name(name)
112:     list = name.split(".")
113:     tmp = []
114:     list.each_with_index do |short, i|
115:       tmp << list[0..i].join(".")
116:     end
117:     tmp.reverse
118:   end