# File lib/puppet/node.rb, line 119
119:     def split_name(name)
120:         list = name.split(".")
121:         tmp = []
122:         list.each_with_index do |short, i|
123:             tmp << list[0..i].join(".")
124:         end
125:         tmp.reverse
126:     end