more cleanups, __cdist prefixes

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-03-31 19:35:26 +02:00
commit b3d7cf3192
3 changed files with 11 additions and 9 deletions

View file

@ -29,15 +29,15 @@ set -eu
__cdist_target_host="$1"; shift
__cdist_object="$1"; shift
code_local="$(__cdist_object_code "$__cdist_object")-${__cdist_name_gencode_local}"
code_remote="$(__cdist_object_code "$__cdist_object")-${__cdist_name_gencode_remote}"
__cdist_code_local="$(__cdist_object_code "$__cdist_object")-${__cdist_name_gencode_local}"
__cdist_code_remote="$(__cdist_object_code "$__cdist_object")-${__cdist_name_gencode_remote}"
echo "Generating local code for $__cdist_object ..."
cdist-object-gencode "$__cdist_target_host" "$__cdist_object" \
"${__cdist_name_gencode_local}" > "${code_local}"
"${__cdist_name_gencode_local}" > "${__cdist_code_local}"
echo "Generating remote code for $__cdist_object ..."
cdist-object-gencode "$__cdist_target_host" "$__cdist_object" \
"${__cdist_name_gencode_remote}" > "${code_remote}"
"${__cdist_name_gencode_remote}" > "${__cdist_code_remote}"
chmod u+x "${code_local}" "${code_remote}"
chmod u+x "${__cdist_code_local}" "${__cdist_code_remote}"