From 316769c9c03a30ea7b895935c59c14514ef56531 Mon Sep 17 00:00:00 2001 From: DrN0VA <44402360+DrN0VA@users.noreply.github.com> Date: Thu, 7 Mar 2019 22:48:23 -0500 Subject: [PATCH] Punctuation Issue (#27893) "Puppet manifests". changed to "Puppet manifests." --- guide/english/puppet/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/puppet/index.md b/guide/english/puppet/index.md index 0d669aa254..faa9e1b4e3 100644 --- a/guide/english/puppet/index.md +++ b/guide/english/puppet/index.md @@ -4,7 +4,7 @@ title: Puppet ## Puppet Puppet is an open-source software configuration management tool. It includes its own declarative language to describe system configuration, it is written in C++ and Clojure. -Puppet is designed to manage the configuration of Unix-like and Microsoft Windows systems declaratively. The user describes system resources and their state, either using Puppet's declarative language or a Ruby DSL (domain-specific language). This information is stored in files called "Puppet manifests". Puppet discovers the system information via a utility called Facter, and compiles the Puppet manifests into a system-specific catalog containing resources and resource dependency, which are applied against the target systems. Any actions taken by Puppet are then reported. +Puppet is designed to manage the configuration of Unix-like and Microsoft Windows systems declaratively. The user describes system resources and their state, either using Puppet's declarative language or a Ruby DSL (domain-specific language). This information is stored in files called "Puppet manifests." Puppet discovers the system information via a utility called Facter, and compiles the Puppet manifests into a system-specific catalog containing resources and resource dependency, which are applied against the target systems. Any actions taken by Puppet are then reported. Puppet consists of a custom declarative language to describe system configuration, which can be either applied directly on the system, or compiled into a catalog and distributed to the target system via client–server paradigm (using a REST API), and the agent uses system specific providers to enforce the resource specified in the manifests. The resource abstraction layer enables administrators to describe the configuration in high-level terms, such as users, services and packages without the need to specify OS specific commands (such as rpm, yum, apt). source: [Wikipedia/Puppet](https://en.wikipedia.org/wiki/Puppet_(software))