2015-01-08 10:34:41 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
blocks_dir=blocks
|
|
|
|
docker_dir=docker
|
|
|
|
template_dir=templates
|
|
|
|
|
|
|
|
grafana_config_file=conf.tmp
|
|
|
|
grafana_config=config
|
|
|
|
|
2017-10-31 08:29:27 -05:00
|
|
|
compose_header_file=compose_header.yml
|
|
|
|
fig_file=docker-compose.yaml
|
|
|
|
fig_config=docker-compose.yaml
|
2015-01-08 10:34:41 -06:00
|
|
|
|
|
|
|
if [ "$#" == 0 ]; then
|
|
|
|
blocks=`ls $blocks_dir`
|
|
|
|
if [ -z "$blocks" ]; then
|
|
|
|
echo "No Blocks available in $blocks_dir"
|
|
|
|
else
|
|
|
|
echo "Available Blocks:"
|
|
|
|
for block in $blocks; do
|
|
|
|
echo " $block"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2017-10-31 08:29:27 -05:00
|
|
|
for file in $grafana_config_file $fig_file; do
|
2015-01-08 10:34:41 -06:00
|
|
|
if [ -e $file ]; then
|
|
|
|
echo "Deleting $file"
|
|
|
|
rm $file
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2017-10-31 08:29:27 -05:00
|
|
|
echo "Adding Compose header to $fig_file"
|
|
|
|
cat $compose_header_file >> $fig_file
|
|
|
|
|
2015-01-08 10:34:41 -06:00
|
|
|
for dir in $@; do
|
|
|
|
current_dir=$blocks_dir/$dir
|
|
|
|
if [ ! -d "$current_dir" ]; then
|
|
|
|
echo "$current_dir is not a directory"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -e $current_dir/$grafana_config ]; then
|
|
|
|
echo "Adding $current_dir/$grafana_config to $grafana_config_file"
|
|
|
|
cat $current_dir/$grafana_config >> $grafana_config_file
|
|
|
|
echo "" >> $grafana_config_file
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -e $current_dir/$fig_config ]; then
|
|
|
|
echo "Adding $current_dir/$fig_config to $fig_file"
|
2017-10-31 08:29:27 -05:00
|
|
|
cat $current_dir/$fig_config >> $fig_file
|
2015-01-08 10:34:41 -06:00
|
|
|
echo "" >> $fig_file
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|