On Aug 19, 1:33 pm, Brad Krane <brad.kr...@gmail.com> wrote:
[...] > drupal6/manifests/init.pp > ------------------------------------ [...] > class drupal6 { [...] > define theme_repo( > $theme = "", > $version = "", > $site = "default", > $upstream = "drupal") > { [...] > } > > # Testing > define alt_site ($theme) { > drupal6::theme_repo { "$name-$theme['name']": > theme => $theme['name'], > version => $theme['version'], > upstream => $theme['upstream'], > site => "default" > } > } # > <---------------------------------------- Line 129 [...] > Any help or insight is very much appreciated. It looks to me like the correct fully-qualified name of the define should be drupal6::drupal6::theme_repo. If you want it to be just drupal6::theme_repo then put it in its own file (named modules/drupal6/ manifests/theme_repo.pp). You definitely should do so if you anticipate that the define will be used anywhere other than where it already is used. You also the option of refering to the define by its simple name ("theme_repo") within the scope where it is declared. John -- 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.