#!/bin/bash # # configxml set/get an entry in Columnstore.xml file # # case "$1" in setconfig) if [ $# -ne 4 ]; then echo $"Usage: $0 setconfig section variable set-value" exit 1 fi oldvalue=$(mcsGetConfig $2 $3) #if [ -z $oldvalue ]; then # echo "$2 / $3 not found in Columnstore.xml" # exit 1 #fi echo "Old value of $2 / $3 is $oldvalue" calxml=@ENGINE_SYSCONFDIR@/columnstore/Columnstore.xml seconds=$(date +%s) cp $calxml $calxml.$seconds echo echo "$calxml backed up to $calxml.$seconds" echo oldvalue=$(mcsGetConfig $2 $3) echo "Old value of $2 / $3 is $oldvalue" if ( [ $# -eq 4 ] && [ -z $4 ] ); then mcsSetConfig $2 $3 "" else mcsSetConfig $2 $3 $4 fi newvalue=$(mcsGetConfig $2 $3) echo "$2 / $3 now set to $newvalue" ;; getconfig) if test ! $3 ; then echo $"Usage: $0 getconfig section variable" exit 1 fi value=$(mcsGetConfig $2 $3) if [ -z $value ]; then echo "$2 / $3 not found in Columnstore.xml" exit 1 fi echo "Current value of $2 / $3 is $value" ;; *) echo $"Usage: $0 {setconfig|getconfig} section variable set-value" exit 1 esac # vim:ts=4 sw=4: