Re: [Puppet Users] Subscribe and Require

2011-04-28 Thread Martin Harrigan
On Wed, Apr 27, 2011 at 2:47 PM, Nigel Kersten wrote: > > > On Wed, Apr 27, 2011 at 3:40 PM, Stig Sandbeck Mathisen > wrote: >> >> Martin Harrigan writes: >> >> > Hi all, >> > >> > Does a subscription result in an auto-requirement? >> >> A "subscribe" should imply a "require", although this is n

Re: [Puppet Users] Subscribe and Require

2011-04-27 Thread Nigel Kersten
On Wed, Apr 27, 2011 at 3:40 PM, Stig Sandbeck Mathisen wrote: > Martin Harrigan writes: > > > Hi all, > > > > Does a subscription result in an auto-requirement? > > A "subscribe" should imply a "require", although this is not explicitly > stated at > http://docs.puppetlabs.com/references/stable/

Re: [Puppet Users] Subscribe and Require

2011-04-27 Thread Stig Sandbeck Mathisen
Martin Harrigan writes: > Hi all, > > Does a subscription result in an auto-requirement? A "subscribe" should imply a "require", although this is not explicitly stated at http://docs.puppetlabs.com/references/stable/metaparameter.html#subscribe The answer is a firm "I think so". :) -- Stig Sa

[Puppet Users] Subscribe and Require

2011-04-27 Thread Martin Harrigan
Hi all, Does a subscription result in an auto-requirement? For example, in the service below, is the require redundant? package { 'PACKAGE': ensure => latest } file { 'CONFIG-FILE': ... require => Package['PACKAGE'] } service { 'SERVICE': ... subscribe => File['CONFIG_FILE'],

[Puppet Users] subscribe and require with exec

2008-11-14 Thread Casey Deccio
Hi, I'd like to be able to use subscribe with exec to refresh when files change, but I'd like each refresh to be dependent on another exec--e.g., to test configuration syntax. The closest I've been able to come is what I have below (I've removed some of the rest of the detail), but the problem is