I'm trying to use puppet to setup my apache v-hosts. I want to make sure
the files are in order so my puppet statement is this:

        file { "apache-vhost-$name":
                path    => "/etc/apache2/sites-enabled/$order-$name",
                        content => template("apache/vhost.erb"),
                        notify  => Service[apache2];
                }

That creates the file /etc/apache2/sites-enabled/domain.name.tld - which is
not correct.  If I change the puppet manifest to read
"/sites-enables/$order\-$name" then the file it creates is
/etc/apache2/sites-enabled/500\-domain.name.tld - which is closer.  I'm not
really sure what to do in this case?

-- 
Jon
[[User:ShakataGaNai]] / KJ6FNQ
http://snowulf.com/
http://www.linkedin.com/in/shakataganai <http://twitter.com/shakataganai>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to