Skip to content
This repository has been archived by the owner on Jul 24, 2018. It is now read-only.

Commit

Permalink
add missing commas
Browse files Browse the repository at this point in the history
(#19)
  • Loading branch information
antoineco committed Jun 19, 2015
1 parent e7b617f commit 96c88bb
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions manifests/instance.pp
Original file line number Diff line number Diff line change
Expand Up @@ -871,17 +871,17 @@
# generate and manage context configuration
::tomcat::context { "instance ${name} default":
path => "${catalina_base_real}/conf/context.xml",
params => $context_params
loader => $context_loader
manager => $context_manager
realm => $context_realm
resources => $context_resources
watchedresources => $context_watchedresources
parameters => $context_parameters
environments => $context_environments
listeners => $context_listeners
valves => $context_valves
resourcedefs => $context_resourcedefs
params => $context_params,
loader => $context_loader,
manager => $context_manager,
realm => $context_realm,
resources => $context_resources,
watchedresources => $context_watchedresources,
parameters => $context_parameters,
environments => $context_environments,
listeners => $context_listeners,
valves => $context_valves,
resourcedefs => $context_resourcedefs,
resourcelinks => $context_resourcelinks
}

Expand Down

0 comments on commit 96c88bb

Please sign in to comment.