Introduce kickstart local
This commit is contained in:
parent
092e48e3fd
commit
aae2eb2f41
@ -75,5 +75,12 @@ Deploy two roles on a host with an alternative port
|
||||
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
|
||||
This project was inspired on [sunzi](https://github.com/kenn/sunzi)
|
||||
|
7
lib/kickstart-local
Executable file
7
lib/kickstart-local
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
kickstart compile $@
|
||||
(
|
||||
cd compile
|
||||
bash install.sh
|
||||
)
|
Loading…
Reference in New Issue
Block a user