Issue #2893 has been updated by Brice Figureau.
This @/^django([0-9]*)\.([a-z]*)$/@ regexp doesn't match @django2.test.example.com@ because @[a-z]*@ doesn't match '.'. Change your regexp to: <pre> /^django([0-9]*)\.([a-z.]*)$/ </pre> ---------------------------------------- Bug #2893: cannot seem to do * for a domain when using regex nodes.pp http://projects.reductivelabs.com/issues/2893 Author: Rob Terhaar Status: Unreviewed Priority: Normal Assigned to: Category: Target version: Affected version: 0.25.1 Keywords: Branch: my classification in nodes: node /^django([0-9]*)\.([a-z]*)$/ { include webserver::django } When running puppetd: <clip> debug: Using cached certificate for django2.test.example.com debug: Using cached certificate_revocation_list for ca debug: Format s not supported for Puppet::Resource::Catalog; has not implemented method 'from_s' err: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find node 'django2.test.example.com' on node django2.test.example.com -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://reductivelabs.com/redmine/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
