Has anyone attempted to use the augeas type to add a service?  I got the
service to add no problem, but having some difficulties to get the match to
work to prevent duplicate entries from adding.  Since the service-name[*]
has endless number of entries I used a glob so it checks all the entries but
that does not seem to work.  Any ideas on how to proceed?

  augeas { app_tcp':
    context => '/files/etc/services',
    changes => ['insert service-name after service-name[last()]',
                'set service-name[last()] app_tcp',
                'set service-name[last()]/port 1002',
                'set service-name[last()]/protocol tcp'],
    onlyif  => "match service-name[.*] != '[port = 1002][protocol = tcp]'"
  }

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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