Introduce kickstart compile command

This commit is contained in:
Bruno Tavares 2014-02-20 12:53:24 -03:00
parent c4379c5baf
commit a833d374d1
2 changed files with 55 additions and 0 deletions

View File

@ -48,5 +48,13 @@ kickstart docker-ssh
``` ```
#### compile
Compile the current workspace into the folder to be packaged on deploy
```bash
kickstart compile
```
### Thanks ### Thanks
This project was inspired on [sunzi](https://github.com/kenn/sunzi) This project was inspired on [sunzi](https://github.com/kenn/sunzi)

47
lib/kickstart-compile Executable file
View File

@ -0,0 +1,47 @@
#!/bin/bash -e
module_loading=$(cat <<MODULE
current_dir=\$(pwd)
for module in modules/*; do
cd \$module
source install.sh
cd \$current_dir
done
MODULE
)
clean_up_compile_folder() {
[ -d compile ] && rm -rf compile
mkdir -p compile
}
link_folder() {
[[ -h compile/$1 ]] || ln -s ../$1 compile/$1
}
link_modules() {
mkdir -p compile/modules
ln -s `kickstart root-dir`/kickstart compile/modules/kickstart
if [ -d modules ]; then
for module in modules/*; do
ln -s ../../modules/$module compile/modules/$module
done
fi
}
compile_install() {
cat <( echo -e "$module_loading" ) install.sh > compile/install.sh
for role in $@; do
echo "source roles/${role}.sh" >> compile/install.sh
done
}
clean_up_compile_folder
link_folder files
link_folder recipes
link_folder roles
link_modules
compile_install $@
echo -e "\necho Done" >> compile/install.sh