├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── dev-requirements.txt ├── loom ├── __init__.py ├── app.py ├── config.py ├── decorators.py ├── files │ ├── init │ │ ├── puppet.conf │ │ └── puppetmaster.conf │ └── puppet │ │ ├── auth.conf │ │ ├── hiera.yaml │ │ └── puppet.conf ├── puppet.py ├── tasks.py └── utils.py ├── requirements.txt ├── script └── test ├── setup.py └── spec ├── __init__.py ├── config_spec.py ├── decorators_spec.py ├── puppet_spec.py └── tasks_spec.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | /build 4 | /dist 5 | .librarian 6 | .env 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | pspec==0.0.2 2 | mock==1.0.1 3 | -------------------------------------------------------------------------------- /loom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/__init__.py -------------------------------------------------------------------------------- /loom/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/app.py -------------------------------------------------------------------------------- /loom/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/config.py -------------------------------------------------------------------------------- /loom/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/decorators.py -------------------------------------------------------------------------------- /loom/files/init/puppet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/files/init/puppet.conf -------------------------------------------------------------------------------- /loom/files/init/puppetmaster.conf: -------------------------------------------------------------------------------- 1 | exec /usr/local/bin/puppet master --no-daemonize 2 | 3 | -------------------------------------------------------------------------------- /loom/files/puppet/auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/files/puppet/auth.conf -------------------------------------------------------------------------------- /loom/files/puppet/hiera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/files/puppet/hiera.yaml -------------------------------------------------------------------------------- /loom/files/puppet/puppet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/files/puppet/puppet.conf -------------------------------------------------------------------------------- /loom/puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/puppet.py -------------------------------------------------------------------------------- /loom/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/tasks.py -------------------------------------------------------------------------------- /loom/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/loom/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fabric==1.6.1 2 | -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/script/test -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/setup.py -------------------------------------------------------------------------------- /spec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/config_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/spec/config_spec.py -------------------------------------------------------------------------------- /spec/decorators_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/spec/decorators_spec.py -------------------------------------------------------------------------------- /spec/puppet_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/spec/puppet_spec.py -------------------------------------------------------------------------------- /spec/tasks_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfirsh/loom/HEAD/spec/tasks_spec.py --------------------------------------------------------------------------------