bstopp/puppet-aem

View on GitHub
docs/service/User-Group.md

Summary

Maintainability
Test Coverage
# AEM Service

## Custom User/Group Service Example

In the event you changed the default AEM user/group.

~~~ puppet
aem::instance { 'aem' :
  source => '/path/to/aem-quickstart.jar',
  status => 'unmanaged',
  user   => 'vagrant',
  group  => 'vagrant',
}

aem::service { 'aem' :
  home  => '/opt/aem',
  user  => 'vagrant',
  group => 'vagrant',
}

Aem::Instance['aem'] ~> Aem::Service['aem']
~~~