Introduce kickstart local

This commit is contained in:
Bruno Tavares 2014-02-20 13:24:40 -03:00
parent 092e48e3fd
commit aae2eb2f41
2 changed files with 14 additions and 0 deletions

View File

@ -75,5 +75,12 @@ Deploy two roles on a host with an alternative port
kickstart deploy "-p 2222 vagrant@localhost" nodejs redis kickstart deploy "-p 2222 vagrant@localhost" nodejs redis
``` ```
#### local
Deploy localy a recipe that is not over ssh. It basicaly compile and run the install script
```bash
kickstart local [roles ...]
```
### Thanks ### Thanks
This project was inspired on [sunzi](https://github.com/kenn/sunzi) This project was inspired on [sunzi](https://github.com/kenn/sunzi)

7
lib/kickstart-local Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash -e
kickstart compile $@
(
cd compile
bash install.sh
)