From 45df8dca119e3004596f290ce423843163cb145b Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 16 May 2015 16:49:48 +0200 Subject: [PATCH] __consul type requires unzip to be installed Signed-off-by: Nico Schottelius --- cdist/conf/type/__consul/manifest | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cdist/conf/type/__consul/manifest b/cdist/conf/type/__consul/manifest index 1cbc5413..ea1a728f 100755 --- a/cdist/conf/type/__consul/manifest +++ b/cdist/conf/type/__consul/manifest @@ -43,7 +43,9 @@ if [ ! -d "$version_dir" ]; then exit 1 fi -__staged_file /usr/local/bin/consul \ +__package unzip + +require="__package/unzip" __staged_file /usr/local/bin/consul \ --source "$(cat "$version_dir/source")" \ --cksum "$(cat "$version_dir/cksum")" \ --fetch-command 'curl -s -L "%s"' \