- Learning PowerShell DSC(Second Edition)
- James Pogran
- 341字
- 2021-07-02 18:31:19
The what
The DSC Domain Specific Language (DSL) defines a standardized way of describing the expected configuration of a target system, whether that is one system or several thousand systems. It describes the what of the target node.
A DSL is a specialized set of language extensions and grammar that makes it easier to codify a specific set of problems. On the other hand, a product such as PowerShell is a general-purpose language, DSLs are specifically built to address a specific set of problems.
You may wonder why we are bothering to define and discuss DSL here. You may think it's an advanced topic or something only developers need to know, but you would be incorrect to discount it. DSLs are all around you, and you use them every day. For example, HTML is a human-readable DSL for web browsers to display content. The actual content is binary, but the HTML specification allows humans to write in a language they understand yet also have the computer understand it.
In the case of DSC, the DSL is oriented at expressing all the different ways in which you can describe the expected state of a system in an easy-to-read manner. If you can read PowerShell code, then the DSC DSL is no different than reading a function declaration with a set of parameters. Most importantly, this easy-to-read structure for you is also easy for the DSC parser to read and turn into an MOF file. This abstraction of an abstraction allows you to write configurations in a language you understand and for that to be translated into a language the system understands.
For example, the target system should have a list of software installed, several settings modified, some services that should be enabled and started, some users to be created and then added to a local group, and several files to be created and have content added to them. It reads like a grocery list to you, but the computer can understand and execute it the same way every time it runs.
- R語言編程指南
- 零基礎學Python數據分析(升級版)
- SSM輕量級框架應用實戰
- Learning Apache Mahout Classification
- Python網絡爬蟲技術與應用
- Python趣味編程與精彩實例
- Python Machine Learning Blueprints:Intuitive data projects you can relate to
- RESTful Web Clients:基于超媒體的可復用客戶端
- Isomorphic Go
- Java EE 7 Development with WildFly
- Python 3.6從入門到精通(視頻教學版)
- HTML5+jQuery Mobile移動應用開發
- 瘋狂Ajax講義(第3版)
- JavaScript Security
- 新手學Visual C