[ansible][fedora] Update package name
[barometer.git] / src / collectd / include_config.sh
1 #!/bin/bash
2 # Copyright 2017-2019 Intel Corporation and OPNFV. All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # Config file options are changing between releases so we have to store both
17 # configurations variants and choose correct one for target collectd version
18 #
19
20 if [ -z "$1" ]; then
21     echo "Error! Please sample configs variant name as a param!"\
22          "(name of directory with sample-configs)"
23     echo "Usage:"
24     echo "$0 SAMPLE_CONFIGS_VARIANT_NAME"
25     echo "e.g. $0 'collectd_sample_configs'"
26     exit 1
27 fi
28
29 SAMPLE_CONF_VARIANT="$1"
30 COLLECTD_CONF_FILE=/opt/collectd/etc/collectd.conf
31 COLLECTD_CONF_DIR=/opt/collectd/etc/collectd.conf.d
32 INCLUDE_CONF="<Include \"/opt/collectd/etc/collectd.conf.d\">"
33 CURR_DIR=`pwd`
34 HOSTNAME=`hostname`
35 SAMPLE_CONF_DIR=$CURR_DIR/$SAMPLE_CONF_VARIANT
36
37 if [ ! -d "$SAMPLE_CONF_DIR" ]; then
38     echo "$SAMPLE_CONF_DIR does not exits!"\
39          "Probably passed bad variant name as a param: $SAMPLE_CONF_VARIANT"
40     exit 1
41 fi
42
43 function write_include {
44     echo "Hostname \"$HOSTNAME\"" | sudo tee -a $COLLECTD_CONF_FILE;
45     echo $INCLUDE_CONF | sudo tee -a $COLLECTD_CONF_FILE;
46     echo "  Filter \"*.conf\"" | sudo tee -a $COLLECTD_CONF_FILE;
47     echo -e "</Include>" | sudo tee -a $COLLECTD_CONF_FILE;
48 }
49
50 grep -qe '<Include "/opt/collectd/etc/collectd.conf.d">' $COLLECTD_CONF_FILE; [ $? -ne 0 ] && write_include
51
52 `mkdir -p $COLLECTD_CONF_DIR`
53
54 SAMPLE_CONF_FILES=$SAMPLE_CONF_DIR/*
55 for F in $SAMPLE_CONF_FILES; do
56    FILE=$(basename $F)
57    [ -f $COLLECTD_CONF_DIR/$FILE ] && echo "File $COLLECTD_CONF_DIR/$FILE exists" || cp $F $COLLECTD_CONF_DIR
58 done