From f2cfebd188449071cfe2750863b55be4efe3e4f6 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 7 Mar 2011 23:04:15 +0100 Subject: [PATCH] rename *codegen -> gencode (according to manpage and the way types are defined) Signed-off-by: Nico Schottelius --- bin/cdist-deploy-to | 2 +- bin/{cdist-object-codegen => cdist-object-gencode} | 0 bin/{cdist-object-codegen-all => cdist-object-gencode-all} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename bin/{cdist-object-codegen => cdist-object-gencode} (100%) rename bin/{cdist-object-codegen-all => cdist-object-gencode-all} (96%) diff --git a/bin/cdist-deploy-to b/bin/cdist-deploy-to index c576dfd6..5d06cf96 100755 --- a/bin/cdist-deploy-to +++ b/bin/cdist-deploy-to @@ -58,7 +58,7 @@ cdist-manifest-run-all "$__cdist_target_host" "$__cdist_out_object_dir" cdist-object-explorer-all "$__cdist_target_host" "$__cdist_out_object_dir" # Generate code for all objects -cdist-object-codegen-all "$__cdist_target_host" "$__cdist_out_object_dir" +cdist-object-gencode-all "$__cdist_target_host" "$__cdist_out_object_dir" # Transfer all objects including code cdist-dir push "$__cdist_target_host" "$__cdist_out_object_dir" \ diff --git a/bin/cdist-object-codegen b/bin/cdist-object-gencode similarity index 100% rename from bin/cdist-object-codegen rename to bin/cdist-object-gencode diff --git a/bin/cdist-object-codegen-all b/bin/cdist-object-gencode-all similarity index 96% rename from bin/cdist-object-codegen-all rename to bin/cdist-object-gencode-all index 67f05186..40c39fd4 100755 --- a/bin/cdist-object-codegen-all +++ b/bin/cdist-object-gencode-all @@ -39,7 +39,7 @@ while read object; do code="$(__cdist_object_code "$object")" echo "Generating code for $object ..." - cdist-object-codegen "$__cdist_target_host" \ + cdist-object-gencode "$__cdist_target_host" \ "$__cdist_object_base_dir" \ "$object" > "${code}"