From e8447e3d719112b0933bbc65667a377cc8e5e26f Mon Sep 17 00:00:00 2001 From: Aleksey Shirokih Date: Mon, 6 Aug 2018 14:44:13 +0300 Subject: [PATCH] Service file binary place mismatch According to cluster/binary.yml vault binary will be placed to `{{ bin_dir }}` and according to `inventory/sample/group_vars/all.yml` that is `inventory/sample/group_vars/all.yml` --- roles/vault/templates/host.service.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/vault/templates/host.service.j2 b/roles/vault/templates/host.service.j2 index 11bce2f29..28fac1dba 100644 --- a/roles/vault/templates/host.service.j2 +++ b/roles/vault/templates/host.service.j2 @@ -4,7 +4,7 @@ After=network.target [Service] AmbientCapabilities=CAP_IPC_LOCK -ExecStart=/usr/bin/vault server --config={{ vault_config_dir }}/config.json +ExecStart={{ bin_dir }}/vault server --config={{ vault_config_dir }}/config.json LimitNOFILE=40000 NotifyAccess=all Restart=always