search for: extrahosts

Displaying 3 results from an estimated 3 matches for "extrahosts".

2009 Feb 27
4
Banging my head on wall (hosts)
...lution because it puts node specific logic inside a class - I think that from a architecture/reusable component/large scale perspetive that stuff belongs at the node definition. I guess I could just not use my host class on my exception. So, my next attempt was this: node mgmt01.xxx.com { $extrahosts = ["puppet", "certmaster"] include hosts } So, I thought this would work: if $extrahosts { $myhosts = [$hostname, $extrahosts] } else { $myhost = $hostname } host { "${fqdn}": ip => $ipaddress, alias => $myhost, } Still have the case...
2006 Oct 29
1
scriptaculous: fade out then in.
I''m pretty new to javascript, and scriptaculous, but I know what I want to do. I want to make it so that when a person clicks a link, the previous content of the div fades out, and the new content fades in. This is what I''ve got for my function: <script type="text/javascript"> //<![CDATA[ function loadmerch(im) { new
2006 Nov 27
7
3 prototype/scriptaculous effects in order on one <div>
What I am trying to do is fade out the content in a certain <div> load new content while its black then fade in the new content but im lost. I need it to go like this... Effect.Fade,Ajax.Update,Effect.Appear but everytime I try to do it it just trys to do all of them at once, how do I go about making the effects wait on the previous one before it starts?