diff --git a/README.md b/README.md index f3ad31c..73c5244 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ REQUIRED Path to the vault binary. -Default value: `${home_dir}/vault"` +Default value: `/usr/local/bin/vault"` #### `vault_prefix` diff --git a/manifests/common.pp b/manifests/common.pp index f530460..bcd14cc 100644 --- a/manifests/common.pp +++ b/manifests/common.pp @@ -57,19 +57,6 @@ class acme_vault::common ( Group <| tag == 'acme_vault_group' |> { members +> $group_members } - # vault module isn't too flexible for install only, just copy in binary - # would be nice if this worked! - #class { '::vault::install': - # manage_user => false, - #} - # - # we have moved to installing vault binary via a dedicated profile, we no - # longer what this here. This can be removed after puppet cleans up. - - file { $vault_bin: - ensure => absent, - } - # variables in bashrc concat { "${home_dir}/.bashrc": owner => $user, diff --git a/manifests/params.pp b/manifests/params.pp index b1b22c6..1997db0 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -14,7 +14,7 @@ class acme_vault::params { # authentication $vault_token = undef $vault_addr = undef - $vault_bin = "${home_dir}/vault" + $vault_bin = "/usr/local/bin/vault" $vault_prefix = '/secret/letsencrypt/'