2024-10-22 03:20:33 -05:00
|
|
|
#!/usr/bin/env bash
|
2015-01-08 10:34:41 -06:00
|
|
|
|
2018-09-17 02:53:37 -05:00
|
|
|
blocks_dir=docker/blocks
|
2015-01-08 10:34:41 -06:00
|
|
|
docker_dir=docker
|
|
|
|
template_dir=templates
|
|
|
|
|
|
|
|
grafana_config_file=conf.tmp
|
|
|
|
grafana_config=config
|
|
|
|
|
2018-09-17 02:53:37 -05:00
|
|
|
compose_header_file=docker/compose_header.yml
|
2019-07-16 01:16:11 -05:00
|
|
|
compose_file=docker-compose.yaml
|
|
|
|
env_file=.env
|
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
|
|
|
|
|
2019-07-16 01:16:11 -05:00
|
|
|
for file in $grafana_config_file $compose_file $env_file; do
|
2015-01-08 10:34:41 -06:00
|
|
|
if [ -e $file ]; then
|
|
|
|
echo "Deleting $file"
|
|
|
|
rm $file
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2019-07-16 01:16:11 -05:00
|
|
|
echo "Adding Compose header to $compose_file"
|
|
|
|
cat $compose_header_file >> $compose_file
|
2017-10-31 08:29:27 -05:00
|
|
|
|
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
|
|
|
|
|
2019-07-16 01:16:11 -05:00
|
|
|
if [ -e $current_dir/$compose_file ]; then
|
|
|
|
echo "Adding $current_dir/$compose_file to $compose_file"
|
|
|
|
cat $current_dir/$compose_file >> $compose_file
|
|
|
|
echo "" >> $compose_file
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -e $current_dir/$env_file ]; then
|
|
|
|
echo "Adding $current_dir/$env_file to .env"
|
|
|
|
cat $current_dir/$env_file >> .env
|
|
|
|
echo "" >> .env
|
2015-01-08 10:34:41 -06:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|