cdist/bin/cdist-quickstart

66 lines
1.7 KiB
Bash
Executable File

#!/bin/sh
#
# 2010-2011 Nico Schottelius (nico-cdist at schottelius.org)
#
# This file is part of cdist.
#
# cdist is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cdist is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
#
#
# Give the user an introduction into cdist
#
. cdist-config
set -eu
banner="cdist-quickstart>"
continue="Press enter to continue or ctrl-c to abort."
__prompt()
{
echo -n "$banner" "$@"
read answer
}
cat << eof
$banner cdist version $__cdist_version
Welcome to the interactive guide to cdist!
This is the interactive tutorial and beginners help for cdist.
eof
__prompt "$continue"
cat << eof
To make any use of cdist, we need to create the configuration base, which
can normally be found below ${__cdist_conf_dir}:
${__cdist_explorer_dir}: Contains explorer, which explore the target
${__cdist_manifest_dir}: Contains manifests which define types being used
${__cdist_manifest_init}: The first manifest executed (i.e. cdist entry point)
${__cdist_type_dir}: Contains types
eof
__prompt "$continue"
set -x
mkdir ${__cdist_conf_dir}
mkdir ${__cdist_explorer_dir}
mkdir ${__cdist_manifest_dir}
touch ${__cdist_manifest_init}
mkdir ${__cdist_type_dir}
set +x