Skip to content

Commit

Permalink
Update default params
Browse files Browse the repository at this point in the history
  • Loading branch information
RiANOl committed Dec 1, 2016
1 parent 9043830 commit 1404900
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,33 @@
#
class nomad::params {

$archive_path = '/opt/puppet-archive'
$bin_dir = '/usr/local/bin'
$config_defaults = {}
$config_dir = '/etc/nomad'
$config_hash = {}
$config_mode = '0660'
$download_extension = 'zip'
$download_url = undef
$download_url_base = 'https://releases.hashicorp.com/nomad/'
$extra_groups = []
$extra_options = ''
$group = 'nomad'
$log_file = '/var/log/nomad'
$install_method = 'url'
$package_name = 'nomad'
$manage_group = true
$manage_service = true
$manage_user = true
$package_ensure = 'latest'
$download_url_base = 'https://releases.hashicorp.com/nomad/'
$download_extension = 'zip'
$version = '0.2.3'
$config_mode = '0660'
$package_name = 'nomad'
$pretty_config = false
$pretty_config_indent = 4
$purge_config_dir = true
$restart_on_change = true
$service_enable = true
$service_ensure = 'running'
$user = 'nomad'
$version = '0.5.0'

case $::architecture {
'x86_64', 'amd64': { $arch = 'amd64' }
Expand Down

0 comments on commit 1404900

Please sign in to comment.