}
static void installServices(final OperationContext context, final ServiceVerificationHandler verificationHandler, final List<ServiceController<?>> newControllers, final String name, final String path, final byte[] content) {
final ServiceName serviceName = ContentService.SERVICE_NAME.append(name).append(path);
final ContentService service = new ContentService(path, content);
ServiceBuilder<ContentService> builder = context.getServiceTarget().addService(serviceName, service)
.addDependency(DeploymentOverlayService.SERVICE_NAME.append(name), DeploymentOverlayService.class, service.getDeploymentOverlayServiceInjectedValue())
.addDependency(ContentRepository.SERVICE_NAME, ContentRepository.class, service.getContentRepositoryInjectedValue());
if (verificationHandler != null) {
builder.addListener(verificationHandler);
}
final ServiceController<ContentService> controller = builder.install();
if (newControllers != null) {