Created
October 17, 2008 00:51
-
-
Save adamhjk/17318 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Set up our puppet environment | |
# | |
unless attrib?("puppet_env") | |
hostname = attrib?("hostname") | |
fqdn = attrib?("fqdn") | |
if fqdn =~ /amazonaws.com$/ | |
replace_attrib("puppet_env", "prod") | |
else | |
if hostname =~ /^.+?\d+(.+)$/ | |
replace_attrib("puppet_env", $1) | |
else | |
replace_attrib("puppet_env", "prod") | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add an attribute to this node. Requires a name and either a string or | |
# array of values. | |
# | |
# Will be cumulative! | |
def add_attrib(name, values) | |
load unless @node | |
@node.attribs << { :name => name, :values => values.kind_of?(Array) ? values : [ values ] } | |
end | |
# Replace the attribute with the given name's values in place. | |
# Will add a new attribute if it needs to. | |
def replace_attrib(name, values) | |
exists = @node.attribs.detect { |a| a[:name] == name } | |
if exists | |
exists[:values] = values.kind_of?(Array) ? values : [ values ] | |
else | |
add_attrib(name, values) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment