You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.4 KiB
82 lines
2.4 KiB
14 years ago
|
cdist-manifest(7)
|
||
|
=================
|
||
|
Nico Schottelius <nico-cdist--@--schottelius.org>
|
||
|
|
||
|
|
||
|
NAME
|
||
|
----
|
||
|
cdist-manifest - Define types to be used
|
||
|
|
||
|
|
||
|
DESCRIPTION
|
||
|
-----------
|
||
|
Manifests exist to define which configurations should be applied to a specific
|
||
|
host as well as to define which configurations should be applied within a
|
||
|
type. Manifests are executed locally and the resulting objects are stored in
|
||
|
an internal database.
|
||
|
|
||
14 years ago
|
The same object can be redefined in multiple different manifests as long as
|
||
|
the parameters are exactly the same.
|
||
14 years ago
|
|
||
14 years ago
|
In general, manifests are used to define which types are used depending
|
||
14 years ago
|
on given conditions.
|
||
|
|
||
14 years ago
|
|
||
|
EXAMPLE
|
||
|
-------
|
||
|
The initial manifest may for instance contain the following code:
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
# Always create this file, so other sysadmins know cdist is used.
|
||
|
__file /etc/cdist-configured --type file
|
||
|
|
||
|
case "$__target_host" in
|
||
|
my.server.name)
|
||
|
__file /root/bin/ --type directory
|
||
|
__file /etc/issue.net --type file --source "$__manifest/issue.net
|
||
|
;;
|
||
|
esac
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
|
The manifest of the type "nologin" may look like this:
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
__file /etc/nologin --type file --source "$__type/files/default.nologin"
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
14 years ago
|
DEPENDENCIES
|
||
|
------------
|
||
|
If you want to describe that something requires something else, just
|
||
|
setup the variable "require" to contain the requirements. Multiple
|
||
|
requirements can be added white space seperated.
|
||
|
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
# No dependency
|
||
|
__file /etc/cdist-configured
|
||
|
|
||
|
# Require above object
|
||
|
require="__file/etc/cdist-configured" __link /tmp/cdist-testfile \
|
||
|
--source /etc/cdist-configured --type symbolic
|
||
|
|
||
|
# Require two objects
|
||
|
require="__file/etc/cdist-configured __link/tmp/cdist-testfile" \
|
||
|
__file /tmp/cdist-another-testfile
|
||
|
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
14 years ago
|
|
||
|
SEE ALSO
|
||
|
--------
|
||
14 years ago
|
- cdist-manifest-run(1)
|
||
|
- cdist-manifest-run-all(1)
|
||
|
- cdist-manifest-run-init(1)
|
||
|
- cdist-type(7)
|
||
14 years ago
|
|
||
|
|
||
|
COPYING
|
||
|
-------
|
||
|
Copyright \(C) 2010-2011 Nico Schottelius. Free use of this software is
|
||
|
granted under the terms of the GNU General Public License version 3 (GPLv3).
|