From 7f96e309710d3355315a21e03aeb702d2a1eb45d Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 17 Feb 2011 09:16:44 +0100 Subject: [PATCH] define __cdist_config at beginning Signed-off-by: Nico Schottelius --- HACKERS_README | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/HACKERS_README b/HACKERS_README index 53f40081..cebe981c 100755 --- a/HACKERS_README +++ b/HACKERS_README @@ -20,32 +20,35 @@ eof # Tell the user what we do, so this script makes sense during execution set -x -# prepare use: +# prepare use (only from top level directory) export PATH="$PATH:$(pwd -P)/bin" +export __cdist_config="$(pwd -P)/conf" + object_tmp=/tmp/localhost/objects explorer_tmp=/tmp/localhost/explorers exec_tmp=/tmp/localhost/exec + # Test first level manifest execution -__cdist_config=$(pwd -P)/conf cdist-manifest-init localhost "$object_tmp" +cdist-manifest-init localhost "$object_tmp" # See what it generated find "$object_tmp" # Generate all objects, including from types that generate objects as well -__cdist_config=$(pwd -P)/conf cdist-manifest-recursive-run localhost "$object_tmp" +cdist-manifest-recursive-all localhost "$object_tmp" # See what it generated find "$object_tmp" # Run explorer on a "remote" host -__cdist_config=$(pwd -P)/conf cdist-explorer-run localhost "$explorer_tmp" +cdist-explorer-run localhost "$explorer_tmp" # Display result find "$explorer_tmp" # Generate code for all objects in object dir -__cdist_config=$(pwd -P)/conf cdist-object-codegen-all localhost "$object_tmp" "$exec_tmp" +cdist-object-codegen-all localhost "$object_tmp" "$exec_tmp" # Display result find "$exec_tmp"