#!/bin/bash
# 手动处理脑裂问题，扔掉指定一方的数据

res="$1"
host="$2"

if [ -z "$host" ];then
    # 扔掉自己的数据
    host=`hostname -s`
fi
