Skip to content

Commit

Permalink
Allow template to be a string
Browse files Browse the repository at this point in the history
This is passed to `template()` which accepts relative paths.
  • Loading branch information
ekohl committed Sep 16, 2022
1 parent 9c322bd commit 6971930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/job.pp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
define jenkins::job (
String $config,
Optional[String] $source = undef,
Optional[Stdlib::Absolutepath] $template = undef,
Optional[String[1]] $template = undef,
String $jobname = $title,
Enum['present', 'absent'] $ensure = 'present',
String $difftool = '/usr/bin/diff -b -q',
Expand Down

0 comments on commit 6971930

Please sign in to comment.