├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── apply ├── lib ├── push └── run /.gitignore: -------------------------------------------------------------------------------- 1 | units 2 | groups 3 | hosts 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloeki/apply/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloeki/apply/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloeki/apply/HEAD/README.md -------------------------------------------------------------------------------- /apply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloeki/apply/HEAD/apply -------------------------------------------------------------------------------- /lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloeki/apply/HEAD/lib -------------------------------------------------------------------------------- /push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloeki/apply/HEAD/push -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lloeki/apply/HEAD/run --------------------------------------------------------------------------------