From 67c7351bec864fb65d294883698f2beb567fb02e Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 9 Dec 2012 11:49:26 -0800 Subject: [PATCH] install the right package, not pyro... Signed-off-by: Nico Schottelius --- cdist/conf/type/__package_pip/gencode-remote | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cdist/conf/type/__package_pip/gencode-remote b/cdist/conf/type/__package_pip/gencode-remote index 3456ced2..ec1c89f8 100644 --- a/cdist/conf/type/__package_pip/gencode-remote +++ b/cdist/conf/type/__package_pip/gencode-remote @@ -46,10 +46,10 @@ fi case "$state_should" in present) - echo $pip install -q pyro + echo $pip install -q "$name" ;; absent) - echo $pip uninstall -q -y pyro + echo $pip uninstall -q -y "$name" ;; *) echo "Unknown state: $state_should" >&2