bstopp/puppet-aem

View on GitHub
examples/license/user-group.pp

Summary

Maintainability
Test Coverage

# Custom User/Group License Example

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

aem::license { 'aem' :
  customer    => 'Customer Name',
  home        => '/opt/aem',
  license_key => 'enter-your-key-here',
  version     => '6.1.0',
  user        => 'vagrant',
  group       => 'vagrant',
}

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