Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenhack/spyc
Prototype IT automation system
https://github.com/zenhack/spyc
Last synced: about 1 month ago
JSON representation
Prototype IT automation system
- Host: GitHub
- URL: https://github.com/zenhack/spyc
- Owner: zenhack
- License: lgpl-2.1
- Created: 2015-05-16T04:17:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-23T06:51:34.000Z (over 9 years ago)
- Last Synced: 2024-10-22T07:00:10.321Z (3 months ago)
- Language: Python
- Size: 164 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Overview
Spyc (pronounced "spec") is a very early prototype of an IT automation
system, mixing my favorite parts of ansible, puppet, and chef.From Ansible: No master to set up, only sshd and python 2 are required
on the managed machine. This makes it easy to get started, and it means
you don't have to set up a server to set up your server (Yo Dawg).From Puppet: Declare resources and their dependencies, let the tool work
out the ordering. Ansible and Chef both just execute things in the order
listed in the file --- you have an imperative script whose statements
happen to be idempotent.From Chef: Use a real programming language, instead of a special-purpose
DSL. Ansible uses a specialized yaml format, and puppet has it's own
language. Both of these get clumsy when you start needing to do anything
non-trivial. Chef just let's you write things in ruby. In the case of
Spyc, the language is python 2.# License
LGPL-2.1 (see `COPYING`).