|
8 | 8 | # @param cachedir [String] Default: undef |
9 | 9 | # @param configfile [String] Default: undef |
10 | 10 | # @param version [String] Default: undef |
| 11 | +# @param puppet_master [String] Default: undef |
11 | 12 | # @param modulepath [String] Default: undef |
12 | 13 | # @param manage_modulepath [String] Default: undef |
13 | 14 | # @param manage_ruby_dependency [String] Default: 'ignore' |
|
21 | 22 | # @param configfile_symlink [String] Default: undef |
22 | 23 | # @param include_prerun_command [Boolean] Default: false |
23 | 24 | # @param include_postrun_command [Boolean] Default: false |
| 25 | +# @param git_settings [String] Default: undef |
| 26 | +# @param forge_settings [String] Default: undef |
| 27 | +# @param postrun [String] Default: undef |
24 | 28 | # @param env_owner [String] Default:'root', |
25 | 29 | # @param r10k_minutes [Array] Default [0,15,30,45] |
26 | 30 | # @param r10k_update [Boolean] true |
|
32 | 36 | $cachedir = undef, |
33 | 37 | $configfile = undef, |
34 | 38 | $version = undef, |
| 39 | + $puppet_master = undef, |
35 | 40 | $modulepath = undef, |
36 | 41 | $manage_modulepath = undef, |
37 | 42 | $manage_ruby_dependency = 'ignore', |
|
45 | 50 | $configfile_symlink = undef, |
46 | 51 | $include_prerun_command = false, |
47 | 52 | $include_postrun_command = false, |
| 53 | + $git_settings = undef, |
| 54 | + $forge_settings = undef, |
| 55 | + $postrun = undef, |
48 | 56 | $env_owner = 'root', |
49 | 57 | $r10k_minutes = [ |
50 | 58 | 0, |
|
82 | 90 | cachedir => $cachedir, |
83 | 91 | configfile => $configfile, |
84 | 92 | version => $version, |
| 93 | + puppet_master => $puppet_master, |
85 | 94 | modulepath => $modulepath, |
86 | 95 | manage_modulepath => $manage_modulepath, |
87 | 96 | manage_ruby_dependency => $manage_ruby_dependency, |
|
95 | 104 | configfile_symlink => $configfile_symlink, |
96 | 105 | include_prerun_command => $include_prerun_command, |
97 | 106 | include_postrun_command => $include_postrun_command, |
| 107 | + git_settings => $git_settings, |
| 108 | + forge_settings => $forge_settings, |
| 109 | + postrun => $postrun, |
98 | 110 | } |
99 | 111 |
|
100 | 112 | # cron for updating the r10k environment |
|
0 commit comments