blob: a192e058edf73c6ab15eea6232bdca60270fa1f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
setup()
{
setup_dbdir
setup_date
export FAKE_TDBTOOL_SUPPORTS_CHECK="yes"
export FAKE_TDB_IS_OK="yes"
export FAKE_CTDB_TUNABLES_OK="
MonitorInterval
DatabaseHashSize
"
export FAKE_CTDB_TUNABLES_OBSOLETE="
EventScriptUnhealthyOnTimeout
"
}
result_filter()
{
_date="[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]"
_time="[0-9][0-9][0-9][0-9][0-9][0-9]"
_date_time="${_date}\.${_time}"
sed -e "s|\.${_date_time}\.|.DATE.TIME.|"
}
|