diff options
author | Maryam Tahhan <maryam.tahhan@intel.com> | 2016-12-14 11:17:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-14 11:17:48 +0000 |
commit | 60fa6b4a1116e361a6dbda516679610165dc320d (patch) | |
tree | bb526b6ecb99ff530ed69cb6b045f90f98b02470 /src/collectd/include_config.sh | |
parent | 199077e6ca9b2a6fe23cf1b2baa99cb5a82aa1ec (diff) | |
parent | a23869a8d6570035547b3da7b1d7c693ff58f6eb (diff) |
Merge "src: only copy config if it doesn't exist"
Diffstat (limited to 'src/collectd/include_config.sh')
-rwxr-xr-x | src/collectd/include_config.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/collectd/include_config.sh b/src/collectd/include_config.sh index 95b052f3..1996e96b 100755 --- a/src/collectd/include_config.sh +++ b/src/collectd/include_config.sh @@ -1,6 +1,9 @@ #!/bin/bash COLLECTD_CONF_FILE=/opt/collectd/etc/collectd.conf +COLLECTD_CONF_DIR=/opt/collectd/etc/collectd.conf.d INCLUDE_CONF="<Include \"/opt/collectd/etc/collectd.conf.d\">" +CURR_DIR=`pwd` +SAMPLE_CONF_DIR=$CURR_DIR/collectd_sample_configs/* function write_include { echo $INCLUDE_CONF | sudo tee -a $COLLECTD_CONF_FILE; @@ -10,3 +13,9 @@ function write_include { grep -qe '<Include "/opt/collectd/etc/collectd.conf.d">' $COLLECTD_CONF_FILE; [ $? -ne 0 ] && write_include +`mkdir -p $COLLECTD_CONF_DIR` + +for F in $SAMPLE_CONF_DIR; do + FILE=$(basename $F) + [ -f $COLLECTD_CONF_DIR/$FILE ] && echo "File $COLLECTD_CONF_DIR/$FILE exists" || cp $F $COLLECTD_CONF_DIR +done |