On Mar 3, 10:38 pm, Ramin K <ramin.khat...@gmail.com> wrote:
> source => "puppet:///postfix/aliases.db"; <--- I don't think you need
> the ; anywhere. You've got a a few of them.

They are not necessary in that context, but they are valid and
harmless.  They are needed when you want to put multiple resources
into the same declaration, like so:

package {
  "my-package1": ensure => latest;
  "my-package2": ensure => 0.42;
  "your-package3": ensure => absent;
  # The last semicolon is optional
}

Of course, you can specify as many properties as you like for each
resource.


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.

Reply via email to