ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
I hereby claim:
- I am alexsapran on github.
- I am asapranidis (https://keybase.io/asapranidis) on keybase.
- I have a public key whose fingerprint is 3AAC 2B10 5DB5 7648 E14D B40E 8521 E9A2 6870 5B61
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_warning(){ | |
echo -e "\e[31m${@}\e[0m" | |
} | |
_info(){ | |
echo -e $@ | |
} | |
_success(){ | |
echo -e "\e[32m${@}\e[0m" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Redirect output to stderr. | |
exec 1>&2 | |
# enable user input | |
exec < /dev/tty | |
# check if there is a change in the tfstate file | |
TFSTATE=`git diff --cached --name-status | awk '$1 != "R" { print $2 }' |grep tfstate |wc -l` | |
if [ $TFSTATE -ne 0 ] | |
then | |