- 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.
- CockroachDB權(quán)威指南
- Mastering Python Scripting for System Administrators
- SharePoint Development with the SharePoint Framework
- 劍指Java:核心原理與應(yīng)用實踐
- 圖數(shù)據(jù)庫實戰(zhàn)
- Hands-On Kubernetes on Windows
- SignalR:Real-time Application Development(Second Edition)
- Python網(wǎng)絡(luò)爬蟲實例教程(視頻講解版)
- C語言從入門到精通
- Practical Responsive Typography
- 前端程序員面試算法寶典
- Java程序設(shè)計(項目教學(xué)版)
- The Python Apprentice
- GitHub Essentials
- Java并發(fā)編程深度解析與實戰(zhàn)