Re: [Puppet Users] Automatic require in custom type?

2012-09-16 Thread Stefan Schulte
On Fri, Sep 14, 2012 at 03:49:56PM +0200, Jakov Sosic wrote: Hi. I have 3 custom types, for example A, B, and C. A and B are build blocks for C. So if there is no A or B, C will fail to be added. For example: typeA { 'A': ... ... } typeB { 'B': ... ... } typeC { 'C':

[Puppet Users] Automatic require in custom type?

2012-09-14 Thread Jakov Sosic
Hi. I have 3 custom types, for example A, B, and C. A and B are build blocks for C. So if there is no A or B, C will fail to be added. For example: typeA { 'A': ... ... } typeB { 'B': ... ... } typeC { 'C': optionA = 'A', optionB = 'B', } So, I would have to write the require in