diff --git a/HACKERS_README b/HACKERS_README index e339499a..5a0aa8d7 100755 --- a/HACKERS_README +++ b/HACKERS_README @@ -23,17 +23,26 @@ object_tmp=/tmp/localhost/objects explorer_tmp=/tmp/localhost/explorers # Test first level manifest execution -__cdist_config=$(pwd -P)/conf cdist-manifest-init localhost $object_tmp +__cdist_config=$(pwd -P)/conf cdist-manifest-init 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_config=$(pwd -P)/conf cdist-explorer-run localhost "$explorer_tmp" # Display result find $explorer_tmp # Soon working: -__cdist_config=$(pwd -P)/conf cdist-manifest-recursive-run localhost $object_tmp +__cdist_config=$(pwd -P)/conf cdist-manifest-recursive-run localhost "$object_tmp" +################################################################################ +# Further in the future +# + +# Generate code for one object +__cdist_config=$(pwd -P)/conf cdist-code-gen localhost "$object_tmp" __file/etc-issue + +# Generate code for all objects in object dir +__cdist_config=$(pwd -P)/conf cdist-code-gen-all localhost "$object_tmp"