John, Thanks for the reply. I've tried all of your suggestions above, qualifying it as drupal6::drupal6::theme_repo and just theme_repo as well as putting the definition in its own file modules/drupal6/ manifests/theme_repo.pp (and also using the three combinations of variable scoping) but I always get a similar result that it cannot find the resource.
This behavior is very odd to me as I've used very similar definitions where they include other definitions of the same manifest with no issue at all but it seems that for whatever reason specifically with this module I get an error when I do so. On Aug 22, 9:58 am, jcbollinger <john.bollin...@stjude.org> wrote: > 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.