From 77b1c676ca08d66ee654a373d44ef555aec75f7c Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 2 Nov 2011 16:41:56 +0100 Subject: [PATCH] +/- todo Signed-off-by: Nico Schottelius --- doc/dev/todo/TAKEME | 5 ++--- doc/man/man7/cdist-tutorial.text | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/doc/dev/todo/TAKEME b/doc/dev/todo/TAKEME index 4cdb6fcf..a96b3684 100644 --- a/doc/dev/todo/TAKEME +++ b/doc/dev/todo/TAKEME @@ -5,9 +5,8 @@ Feel free to pick one! CORE ---- -- probably remove or improve cdist-type-template -- allow cdist to run without $PATH setup: ./bin/cdist-deploy-to -- support non-ssh access? +- Add subcommand to create template of a type with working manpage + (cdist type-template or so) TESTS ----- diff --git a/doc/man/man7/cdist-tutorial.text b/doc/man/man7/cdist-tutorial.text index 71bf18c0..65f3811c 100644 --- a/doc/man/man7/cdist-tutorial.text +++ b/doc/man/man7/cdist-tutorial.text @@ -9,6 +9,28 @@ cdist-tutorial - a guided introduction into cdist +PREPARING YOUR MACHINE / SETUP +------------------------------ + +- ensure sshd is running on the target host: + +ssh target_host + +- ensure you can login as root + +ssh root@target host + +- ensure login as root works without keys +(see ssh... manpage) + +cdist will do a lot of requests to the target +host, thus you'll have to enter your password +many times, if you don't do this :-) + +- speedup processing with ControlMaster option of +ssh + + YOUR FIRST CONFIGURATION ------------------------