Cdist
cdist is a free software configuration management tool for Unix-like systems. It manages nodes over SSH using the Bourne Shell, and does not require any additional software to be installed on target nodes. Cdist differentiates itself from competing configuration management systems by choosing the Bourne Shell as the primary language for writing configuration scripts and requiring effectively no dependencies on target nodes. Although cdist's core is written in Python, an interpreter is only required on the host machine, not target nodes. Cdist was forked in August 2022 as skonfig.[4] Developmentcdist development started in 2010 at ETH Zurich and is actively being developed[5] and is maintained primarily by Nico Schottelius and Steven Armstrong.[6] cdist is being used at various companies in Switzerland (such as ETH Zurich[7] and The OMA Browser project),[8] the US, Germany and France. Featurescdist is a zero dependency configuration management system: It requires only ssh and a bourne-compatible shell on target hosts, which are provided by default on most Unix-like machines.[9] Because of this, cdist can be used to bootstrap other configuration management systems.[10] Installation and configurationcdist is not typically installed as a package (like .deb or .rpm), but rather via git. All commands are run from the created checkout. The entry point for any configuration is the shell script conf/manifest/init, which is called initial manifest in cdist terms.[11] The main components of cdist are so called types, which bundle functionality.[12] The types essentially consists of a number of shell scripts to define which types a type reuses and which code is generated to be executed on the target host. Architecturecdist is split into two components:
CoreCdist's core handles reading configuration and communicating with remote hosts. Like Ansible, cdist uses a "push" model to apply configuration changes: A cdist process on the "host" machine connects to any number of remote nodes via SSH and then performs configuration updates on those nodes. Cdist can configure multiple hosts in parallel to reduce the time spent configuring.[13] ConfigurationThe configuration scripts define how the targets shall be configured. They are typically written in Bourne Shell and consists of
Shell is the de facto language for writing cdist configuration scripts, but most of the scripts can be written in any language if they contain a suitable shebang line. Shell scripting is favored because of how simple it is to access environment variables, read files, and execute system commands. Configuration languageAll user configurable parts are contained in manifests or gencode-scripts, which are shell scripts. Shell scripts were chosen, because Unix System Administrators are usually proficient in reading and writing shell scripts. Furthermore, shell is also commonly available on potential target systems, thus avoiding the need to install additional software there ("zero dependencies"). cdist reads its configuration from the initial manifest (conf/manifest/init), in which hosts are mapped to types: case "$__target_host" in
myhostname)
__package zsh --state present
__addifnosuchline /tmp/cdist-welcome --line "Welcome to cdist"
;;
esac
When using the types in cdist, they are called like normal programs in manifests and can make use of advanced parameter parsing as well as reading from stdin: # Provide a default file, but let the user change it
__file /home/frodo/.bashrc --source "/etc/skel/.bashrc" \
--state exists \
--owner frodo --mode 0600
# Take file content from stdin
__file /tmp/whatever --owner root --group root --mode 644 --source - << DONE
Here goes the content for /tmp/whatever
DONE
Dependencies are expressed by setting up the require environment variable: __directory /tmp/foobar require="__directory//tmp/foobar" __file /tmp/foobar/baz Access to paths and files within types is given by environment variables like $__object. Similar softwareAnsible, like cdist, uses an agentless push model to configure nodes.[9] However, Ansible requires Python for some types of targets,[15] whereas cdist does not. Ansible makes a distinction between roles, written in a declarative YAML-based language, and modules, written in Python. Cdist only has "types" which serve the purposes of both modules and roles and are mostly written in Bourne Shell. Cdist's approach might be preferable because Shell is familiar to many system administrators who have never used a configuration management system before, but Ansible's declarative language is arguably more readable and appropriate. References
External links |