ainzzorl / goodcode

A curated collection of annotated code examples from prominent open-source projects
https://codecatalog.org
Creative Commons Attribution 4.0 International
198 stars 8 forks source link

[NEW EXAMPLE] Puppet - Graph Algorithms #45

Closed ainzzorl closed 3 years ago

ainzzorl commented 3 years ago

General

Description

Puppet, an automated administrative engine for your Linux, Unix, and Windows systems, performs administrative tasks (such as adding users, installing packages, and updating server configurations) based on a centralized specification.

Puppet uses graphs to represent its catalog. They implement a number of graph algorithms, e.g. Tarjan's algorithm.

Links

What makes it interesting

Related work

No

Other

We already have an article about graph algorithms in Terraform - it would be nice to compare them.